/* =========================
   GLOBAL WRAPPER
   ========================= */
.doclyn-wrapper {
    background: #f5f7fb;
    min-height: 100vh;
}

/* =========================
   HEADER & NAVBAR
   ========================= */
.doclyn-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e5f0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.doclyn-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0f55c0;
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
}

.doclyn-logo-icon {
    display: block;
    margin-top: -1px;
}

.doclyn-logo-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
}

.doclyn-logo-subtitle {
    font-size: 11px;
    color: #7b88a8;
}

.doclyn-nav-link {
    font-size: 14px;
    margin-left: 18px;
    color: #33415c;
}

.doclyn-nav-link:hover {
    text-decoration: none;
    color: #0f55c0;
}

.doclyn-burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 4px;
    background: #33415c;
    border-radius: 999px;
}

/* =========================
   HERO SECTION
   ========================= */
/* =========================
   HERO – PREMIUM VERSION
   ========================= */
.doclyn-hero {
    position: relative;
    padding: 80px 0 90px;
    background: radial-gradient(circle at top left, #ffffff 0, #e8f0ff 38%, #d6e3ff 80%);
    border-top: 14px solid #0f55c0;
    border-bottom: 14px solid #0f55c0;
    overflow: hidden;
}

/* ornamen soft glow */
.doclyn-hero::before,
.doclyn-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.35;
}

.doclyn-hero::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #0f55c0 0, rgba(15,85,192,0) 70%);
    top: -180px;
    right: -120px;
}

.doclyn-hero::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #1f79ff 0, rgba(31,121,255,0) 70%);
    bottom: -180px;
    left: -80px;
}

.doclyn-hero .container {
    position: relative;
    z-index: 1;
}

/* Text hero */
.doclyn-hero-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.25;
    color: #102547;
    letter-spacing: -0.02em;
}

.doclyn-hero-subtitle {
    font-size: 16px;
    color: #5f6e8e;
    margin-top: 14px;
    margin-bottom: 26px;
    max-width: 460px;
}

.doclyn-cta {
    padding: 11px 30px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    box-shadow: 0 14px 34px rgba(15,85,192,0.38);
    transform: translateY(0);
    transition: box-shadow .18s ease, transform .18s ease;
}

.doclyn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(15,85,192,0.46);
}

.doclyn-hero-footnote {
    font-size: 12px;
    color: #7d86a2;
    margin-top: 12px;
}

/* Ilustrasi premium */
.doclyn-hero-illustration {
    display: inline-flex;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f55c0, #1f79ff);
    box-shadow: 0 18px 40px rgba(15, 51, 126, 0.35);
}

.doclyn-hero-screen {
    width: 280px;
    height: 180px;
    border-radius: 20px;
    background: #ffffff;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

/* shimmer di dalam “screen” */
.doclyn-hero-screen::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(15,85,192,0.16), transparent 72%);
}

.doclyn-hero-chart {
    width: 78%;
    height: 12px;
    border-radius: 999px;
    background: rgba(15,85,192,0.14);
    margin-bottom: 10px;
}

.doclyn-hero-chart--small {
    width: 56%;
    background: rgba(11, 171, 104, 0.38);
}

/* Feature cards tetap pakai .doclyn-card yang lama,
   tapi kita sedikit naikkan kualitas shadow & border */
.doclyn-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 26px rgba(15, 51, 126, 0.08);
    border: 1px solid rgba(221, 227, 240, 0.9);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.doclyn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 51, 126, 0.18);
    border-color: rgba(15, 85, 192, 0.45);
}

.doclyn-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(145deg, #e8f0ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: #0f55c0;
}

/* RESPONSIVE HERO */
@media (max-width: 991.98px) {
    .doclyn-hero {
        padding-top: 110px !important; /* sebelumnya hanya 40–50px */
        padding: 56px 0 60px;
    }

    .doclyn-hero-title {
        font-size: 28px;
        text-align: center;
    }

    .doclyn-hero-subtitle {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .doclyn-hero-footnote {
        text-align: center;
    }

    .doclyn-cta {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

    .doclyn-hero .col-lg-6:first-child {
        text-align: center;
    }

    .doclyn-hero-illustration {
        margin-top: 24px;
        transform: scale(0.95);
    }
}

@media (max-width: 575.98px) {
    .doclyn-hero {
        padding-top: 110px !important; /* sebelumnya hanya 40–50px */
        padding-bottom: 46px;
    }

    .doclyn-hero-title {
        font-size: 24px;
    }

    .doclyn-hero-illustration {
        transform: scale(0.85);
    }
}

@media (max-width: 768px) {
    .doclyn-hero {
        padding-top: 110px !important; /* sebelumnya hanya 40–50px */
        text-align: center;
    }

    .doclyn-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .doclyn-hero-subtitle {
        font-size: 14px;
        margin-top: 10px;
    }
}


/* =========================
   FEATURE CARDS
   ========================= */
.doclyn-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 6px 18px rgba(15, 51, 126, 0.08);
    transition: transform .15s ease, box-shadow .15s ease;
}

.doclyn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 51, 126, 0.12);
}

.doclyn-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #e6efff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: #0f55c0;
}

.doclyn-card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #12315a;
}

.doclyn-card-text {
    font-size: 12px;
    margin-bottom: 0;
    color: #56627d;
}

.doclyn-card-news .doclyn-card-thumb {
    width: 100%;
    height: 70px;
    border-radius: 12px;
    background-image: linear-gradient(135deg, #0f55c0, #1f79ff);
}

/* =========================
   SECTION GENERIC
   ========================= */
.doclyn-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #12315a;
}

.doclyn-section-subtitle {
    font-size: 13px;
    color: #6b7693;
    max-width: 620px;
    margin: 0 auto;
}

/* =========================
   SECTION: KENAPA DOCLYN
   ========================= */
.doclyn-why {
    padding: 40px 0;
    background: #f5f7fb;
}

.doclyn-why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid #dde3f0;
    transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}

.doclyn-why-card:hover {
    box-shadow: 0 10px 24px rgba(15, 51, 126, 0.12);
    transform: translateY(-3px);
    border-color: rgba(15, 85, 192, .4);
}

.doclyn-why-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #12315a;
}

.doclyn-why-card p {
    font-size: 13px;
    color: #56627d;
    margin-bottom: 0;
}

.doclyn-why-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e6efff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #0f55c0;
    font-size: 18px;
}

/* =========================
   SECTION: NETWORK
   ========================= */
.doclyn-network {
    padding: 40px 0;
    background: #ffffff;
}

.doclyn-network-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.doclyn-network-list li {
    font-size: 13px;
    color: #56627d;
    margin-bottom: 6px;
}

.doclyn-network-list i {
    color: #0f55c0;
    margin-right: 6px;
}

.doclyn-network-stats {
    background: #f5f7fb;
    border-radius: 16px;
    padding: 16px;
}

.doclyn-network-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    margin: 4px;
}

.doclyn-network-stat-card .label {
    font-size: 11px;
    color: #7b88a8;
}

.doclyn-network-stat-card .value {
    font-size: 20px;
    font-weight: 700;
    color: #0f55c0;
}

.doclyn-network-note {
    font-size: 11px;
    color: #7b88a8;
    margin-top: 8px;
}

/* =========================
   SECTION: STEPS
   ========================= */
.doclyn-steps {
    padding: 40px 0;
    background: #f5f7fb;
}

.doclyn-step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid #dde3f0;
    position: relative;
}

.doclyn-step-card .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0f55c0;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.doclyn-step-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #12315a;
    margin-bottom: 6px;
}

.doclyn-step-card p {
    font-size: 13px;
    color: #56627d;
    margin-bottom: 0;
}

/* =========================
   SECTION: ARTICLES
   ========================= */
/* =========================
   ARTICLES – PREMIUM VERSION
   ========================= */
.doclyn-articles {
    padding: 48px 0 70px;
    background: #f7f8fc;
}

.doclyn-articles-title {
    font-size: 22px;
    font-weight: 700;
    color: #13253f;
}

.doclyn-articles-subtitle {
    font-size: 13px;
    color: #6c7593;
}

/* Card artikel */
.doclyn-article-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(221, 227, 240, 0.9);
    box-shadow: 0 12px 28px rgba(15, 51, 126, 0.04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* border glow tipis saat hover */
.doclyn-article-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(15,85,192,0.18), rgba(119,161,255,0.02));
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.doclyn-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15, 51, 126, 0.18);
    border-color: rgba(15, 85, 192, 0.45);
}

.doclyn-article-card:hover::before {
    opacity: 1;
}

/* Thumbnail */
.doclyn-article-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* overlay warna lembut */
.doclyn-article-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(228, 237, 255, 0.6),
        rgba(180, 195, 255, 0.35)
    );
}

/* overlay noise halus */
.doclyn-article-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: url('data:image/svg+xml,%3Csvg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity=".05"%3E%3Ccircle cx="20" cy="20" r="1.5"/%3E%3Ccircle cx="70" cy="10" r="1"/%3E%3Ccircle cx="110" cy="60" r="2"/%3E%3Ccircle cx="30" cy="95" r="1.2"/%3E%3Ccircle cx="95" cy="25" r="1.4"/%3E%3C/g%3E%3C/svg%3E');
}


.doclyn-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body */
.doclyn-article-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Tag kategori */
.doclyn-article-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #eef3ff;
    color: #0f55c0;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Judul */
.doclyn-article-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.doclyn-article-title a {
    color: #172844;
}

.doclyn-article-title a:hover {
    text-decoration: none;
    color: #0f55c0;
}

/* Excerpt – dibatasi 3 baris supaya rapi */
.doclyn-article-excerpt {
    font-size: 12px;
    color: #5f6e8e;
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;        /* max 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta: author + tanggal */
.doclyn-article-meta {
    font-size: 11px;
    color: #7b86a4;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px dashed #e0e4f2;
    padding-top: 8px;
    margin-top: 4px;
}

.doclyn-article-meta i {
    margin-right: 4px;
}

/* Responsive spacing */
@media (max-width: 767.98px) {
    .doclyn-articles {
        padding-top: 38px;
        padding-bottom: 56px;
    }

    .doclyn-article-card {
        border-radius: 16px;
    }
}


/* =========================
   SECTION: CTA PARTNER
   ========================= */
.doclyn-cta-partner {
    padding: 40px 0 50px;
    background: #0f55c0;
}

.doclyn-cta-partner-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.doclyn-cta-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.doclyn-cta-subtitle {
    font-size: 13px;
    margin-bottom: 0;
    opacity: 0.9;
}

.btn-md-auto {
    width: 100%;
}

@media (min-width: 768px) {
    .btn-md-auto {
        width: auto;
    }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 767.98px) {
    .doclyn-hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .doclyn-hero-title {
        font-size: 24px;
    }

    .doclyn-articles {
        padding-top: 30px;
    }
}


/*APOTEK SECTION*/
/* ========== HERO ========== */
.ppn-hero {
    padding: 90px 0 70px;
    background: radial-gradient(circle at top left, #ffffff 0, #e9f1ff 40%, #d6e2ff 90%);
    position: relative;
}

.ppn-title {
    font-size: 34px;
    font-weight: 800;
    color: #12315a;
}

.ppn-subtitle {
    font-size: 15px;
    color: #5b6886;
    margin: 10px 0 20px;
}

.ppn-cta {
    padding: 10px 28px;
    border-radius: 999px;
    font-weight: 600;
}

.ppn-hero-illustration img {
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15,51,126,0.18);
}


/* ========== FILTER ========== */
.ppn-filter {
    margin-top: -40px;
    position: relative;
}

.ppn-filter-box {
    background: #ffffff;
    padding: 20px 22px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ppn-filter-label {
    font-size: 12px;
    font-weight: 700;
    color: #55627d;
}


/* ========== LIST CARD ========== */
.ppn-list {
    padding: 40px 0 80px;
}

.ppn-section-title {
    font-weight: 700;
    font-size: 22px;
    color: #12315a;
}

.ppn-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 51, 126, 0.09);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ppn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15,51,126,.18);
}

.ppn-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ppn-card-body {
    padding: 16px 18px;
}

.ppn-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #12315a;
}

.ppn-card-address,
.ppn-card-phone {
    font-size: 13px;
    color: #56627d;
    margin-bottom: 4px;
}

.ppn-card-address i,
.ppn-card-phone i {
    color: #0f55c0;
    margin-right: 6px;
}

/* Status Badge */
.ppn-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.ppn-status.aktif {
    background: #e0f7ef;
    color: #0c8f62;
}

.ppn-status.tidak {
    background: #ffecec;
    color: #c0392b;
}


/* ========== RESPONSIVE FIX ========== */
@media (max-width: 768px) {
    .ppn-hero {
        padding-top: 120px;
        padding-bottom: 50px;
        text-align: center;
    }

    .ppn-title {
        font-size: 26px;
    }

    .ppn-filter {
        margin-top: -20px;
    }
}





/**LABORATORIUM*/

/* ========== HERO ========== */
.lpn-hero {
    padding: 90px 0 70px;
    background: radial-gradient(circle at top left, #ffffff 0, #eaf1ff 38%, #d5e2ff 90%);
}

.lpn-title {
    font-weight: 800;
    font-size: 34px;
    color: #12315a;
}

.lpn-subtitle {
    font-size: 15px;
    color: #5b6886;
    margin: 12px 0 22px;
}

.lpn-cta {
    padding: 10px 28px;
    border-radius: 999px;
    font-weight: 600;
}

/* illustration */
.lpn-hero-illustration img {
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15,51,126,0.18);
}


/* ========== FILTER ========== */
.lpn-filter {
    margin-top: -40px;
}

.lpn-filter-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}

.lpn-filter-label {
    font-size: 12px;
    font-weight: 700;
    color: #55627d;
}


/* ========== LIST ========== */
.lpn-list {
    padding: 50px 0 90px;
}

.lpn-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #12315a;
}

/* Card */
.lpn-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dfe6f3;
    box-shadow: 0 10px 28px rgba(15, 51, 126, 0.09);
    transition: transform .2s ease, box-shadow .2s ease;
}

.lpn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15,51,126,.18);
}

.lpn-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.lpn-card-body {
    padding: 16px 18px;
}

.lpn-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #12315a;
    margin-bottom: 8px;
}

.lpn-card-address,
.lpn-card-phone {
    font-size: 13px;
    color: #56627d;
    margin-bottom: 4px;
}

.lpn-card-address i,
.lpn-card-phone i {
    color: #0f55c0;
    margin-right: 6px;
}

/* Status badge */
.lpn-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.lpn-status.aktif {
    background: #e0f7ef;
    color: #0c8f62;
}

.lpn-status.tidak {
    background: #ffecec;
    color: #c0392b;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .lpn-hero {
        padding-top: 120px;
        text-align: center;
    }

    .lpn-title {
        font-size: 26px;
    }

    .lpn-filter {
        margin-top: -20px;
    }
}


/**END LABORATORIUM**/

/**BLOG*/

/* HERO SECTION */
.berita-hero {
    padding: 100px 0 60px;
    background: radial-gradient(circle at top left, #ffffff, #eaf1ff);
}

.berita-hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #12315a;
}

.berita-hero-subtitle {
    font-size: 15px;
    color: #5b6886;
}

/* CARD LIST */
.berita-list {
    padding: 40px 0 80px;
}

.berita-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e7f2;
    box-shadow: 0 10px 28px rgba(15,51,126,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.berita-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,51,126,0.14);
}

.berita-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.berita-body {
    padding: 16px 18px;
}

.berita-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef3ff;
    color: #0f55c0;
    font-weight: 600;
}

.berita-title {
    font-size: 17px;
    font-weight: 700;
    margin: 10px 0 6px;
}

.berita-title a {
    color: #12315a;
}

.berita-title a:hover {
    color: #0f55c0;
    text-decoration: none;
}

.berita-excerpt {
    font-size: 13px;
    color: #56627d;
    min-height: 55px;
}

.berita-meta {
    font-size: 11px;
    color: #7b88a8;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.berita-meta i {
    margin-right: 4px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .berita-hero-title {
        font-size: 26px;
    }
    .berita-thumb img {
        height: 150px;
    }
}

/* =========================
   ABOUT – PREMIUM STYLE
   ========================= */
.about-hero{
    position: relative;
    padding: 90px 0 70px;
    background: radial-gradient(circle at top left, #ffffff 0, #eaf1ff 38%, #d5e2ff 90%);
    overflow: hidden;
}

.about-hero-glow{
    position:absolute;
    width:420px;height:420px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(15,85,192,0.22) 0, rgba(15,85,192,0) 70%);
    right:-120px; top:-170px;
    pointer-events:none;
}

.about-badge{
    display:inline-block;
    padding:6px 12px;
    border-radius:999px;
    background:#eef3ff;
    color:#0f55c0;
    font-size:12px;
    font-weight:700;
    margin-bottom:12px;
}

.about-title{
    font-weight:800;
    font-size:36px;
    line-height:1.2;
    color:#102547;
    letter-spacing:-0.02em;
}

.about-subtitle{
    font-size:15px;
    color:#5f6e8e;
    margin-top:14px;
    max-width:560px;
}

.about-hero-actions{
    margin-top:22px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.about-cta{
    border-radius:999px;
    padding:10px 22px;
    font-weight:700;
}

.about-cta-outline{
    border-radius:999px;
    padding:10px 22px;
    font-weight:700;
}

.about-mini-stats{
    margin-top:22px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.about-stat{
    background:#ffffff;
    border:1px solid rgba(221,227,240,0.9);
    border-radius:16px;
    padding:12px 14px;
    box-shadow:0 10px 26px rgba(15,51,126,0.06);
    min-width:150px;
}

.about-stat .value{
    font-size:20px;
    font-weight:800;
    color:#0f55c0;
    line-height:1.1;
}
.about-stat .label{
    font-size:12px;
    color:#6c7593;
}

.about-hero-card{
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(221,227,240,0.9);
    box-shadow:0 18px 45px rgba(15,51,126,0.18);
}

.about-hero-card-top{
    padding:12px 14px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.chip{
    font-size:11px;
    font-weight:800;
    border-radius:999px;
    padding:5px 10px;
    background:#0f55c0;
    color:#fff;
}
.chip--soft{
    background:#eef3ff;
    color:#0f55c0;
    border:1px solid rgba(15,85,192,0.18);
}

.about-hero-card-ill img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.about-hero-card-bottom{
    padding:14px 16px 16px;
    background:#ffffff;
}

.mini-kpi .kpi-title{
    font-size:13px;
    font-weight:800;
    color:#12315a;
}
.mini-kpi .kpi-sub{
    font-size:12px;
    color:#6c7593;
}

/* sections */
.about-section{
    padding:46px 0;
    background:#ffffff;
}

.about-mission{
    background:#f7f8fc;
}

.about-h2{
    font-size:22px;
    font-weight:800;
    color:#12315a;
}

.about-p{
    font-size:13px;
    color:#6c7593;
    max-width:760px;
    margin:0 auto;
}

.about-card{
    background:#ffffff;
    border-radius:18px;
    border:1px solid rgba(221,227,240,0.95);
    box-shadow:0 12px 28px rgba(15,51,126,0.06);
    padding:18px 16px;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.about-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(15,51,126,0.14);
    border-color: rgba(15,85,192,0.35);
}

.about-card-icon{
    width:44px;height:44px;
    border-radius:14px;
    background:linear-gradient(145deg,#e8f0ff,#ffffff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0f55c0;
    font-size:18px;
    margin-bottom:10px;
}

.about-card-title{
    font-size:16px;
    font-weight:800;
    color:#12315a;
    margin-bottom:6px;
}

.about-card-text{
    font-size:13px;
    color:#56627d;
    margin-bottom:0;
}

.about-list{
    list-style:none;
    padding-left:0;
    margin-bottom:0;
}

.about-list li{
    font-size:13px;
    color:#56627d;
    margin-bottom:8px;
}

.about-list i{
    color:#0f55c0;
    margin-right:8px;
}

/* values */
.value-card{
    background:#ffffff;
    border:1px solid rgba(221,227,240,0.95);
    border-radius:18px;
    padding:16px 14px;
    text-align:center;
    box-shadow:0 12px 28px rgba(15,51,126,0.06);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.value-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(15,51,126,0.14);
    border-color: rgba(15,85,192,0.35);
}
.value-ic{
    width:44px;height:44px;
    border-radius:50%;
    background:#eef3ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0f55c0;
    margin:0 auto 10px;
    font-size:18px;
}
.value-title{
    font-weight:800;
    color:#12315a;
}
.value-sub{
    font-size:12px;
    color:#6c7593;
}

/* timeline */
.about-timeline{
    background:#ffffff;
}
.timeline{
    max-width:860px;
    margin:0 auto;
    position:relative;
    padding-left:22px;
}
.timeline::before{
    content:"";
    position:absolute;
    left:9px;
    top:6px;
    bottom:6px;
    width:2px;
    background:#e2e7f2;
}
.timeline-item{
    position:relative;
    padding:14px 0 14px 24px;
}
.timeline-item .dot{
    position:absolute;
    left:2px;
    top:18px;
    width:16px;height:16px;
    border-radius:50%;
    background:#0f55c0;
    box-shadow:0 10px 24px rgba(15,85,192,0.25);
}
.timeline-item .content{
    background:#ffffff;
    border:1px solid rgba(221,227,240,0.95);
    border-radius:16px;
    padding:14px 14px;
    box-shadow:0 12px 28px rgba(15,51,126,0.06);
}
.timeline-item .year{
    font-size:12px;
    font-weight:900;
    color:#0f55c0;
    margin-bottom:4px;
}
.timeline-item .title{
    font-size:14px;
    font-weight:800;
    color:#12315a;
    margin-bottom:4px;
}
.timeline-item .desc{
    font-size:13px;
    color:#56627d;
}

/* team */
.about-team{
    background:#f7f8fc;
}
.team-card{
    background:#ffffff;
    border:1px solid rgba(221,227,240,0.95);
    border-radius:18px;
    padding:14px 14px;
    text-align:center;
    box-shadow:0 12px 28px rgba(15,51,126,0.06);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(15,51,126,0.14);
    border-color: rgba(15,85,192,0.35);
}
.team-photo{
    width:84px;height:84px;
    border-radius:50%;
    overflow:hidden;
    margin:0 auto 10px;
    border:3px solid #eef3ff;
}
.team-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.team-name{
    font-weight:900;
    color:#12315a;
    font-size:13px;
}
.team-role{
    font-size:12px;
    color:#6c7593;
}

/* CTA */
.about-cta{
    padding:46px 0 60px;
    background:#0f55c0;
}
.about-cta-box{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:20px;
    padding:22px 22px;
    color:#fff;
}
.about-cta-title{
    font-size:20px;
    font-weight:900;
    margin-bottom:6px;
}
.about-cta-sub{
    font-size:13px;
    margin-bottom:0;
    opacity:0.92;
}
.btn-md-auto{ width:100%; }
@media(min-width:768px){ .btn-md-auto{ width:auto; } }

/* responsive: cegah ketutup header sticky */
@media (max-width: 768px) {
    .about-hero{
        padding-top: 120px;
        text-align:center;
    }
    .about-title{ font-size:26px; }
    .about-hero-actions{ justify-content:center; }
    .about-mini-stats{ justify-content:center; }
}

.logo {
    display: flex;
    align-items: center;
}

/* Desktop */
.doclyn-logo-img {
    height: 72px;          /* sebelumnya ~90px visualnya kecil karena navbar */
    width: auto;
    transition: transform .2s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .doclyn-logo-img {
        height: 56px;
    }
}





