/* ============================================================
   RUANG CURHAT — style.css
   Design System: Material You · Blue/Teal palette
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Colors — Material You Blue/Teal */
    --primary:              #006493;
    --primary-container:    #5da7db;
    --primary-fixed:        #cae6ff;
    --primary-fixed-dim:    #8dcdff;
    --on-primary:           #ffffff;
    --on-primary-container: #003b58;

    --secondary:            #136964;
    --secondary-container:  #a4f0e9;
    --on-secondary-container: #1d706a;

    --tertiary:             #4f6169;
    --tertiary-container:   #90a3ab;
    --on-tertiary-container: #273940;

    --surface:              #f3faff;
    --surface-bright:       #f3faff;
    --surface-container-low:    #e6f6ff;
    --surface-container:        #dbf1fe;
    --surface-container-high:   #d5ecf8;
    --surface-container-highest:#cfe6f2;
    --surface-container-lowest: #ffffff;
    --surface-dim:          #c7dde9;

    --on-surface:           #071e27;
    --on-surface-variant:   #40484f;
    --outline:              #707880;
    --outline-variant:      #c0c7d0;
    --background:           #f3faff;

    /* Spacing */
    --max-w:        1200px;
    --px-desktop:   40px;
    --px-mobile:    16px;
    --section-py:   64px;

    /* Radius */
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    32px;
    --radius-full:  9999px;

    /* Shadow */
    --shadow-card:  0 4px 20px rgba(69,90,100,.08);
    --shadow-md:    0 4px 16px rgba(0,100,147,.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--on-surface);
    line-height: 1.6;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px-desktop);
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
}

/* ---------- HEADER (includes/header.php) ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    padding: 14px var(--px-desktop);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    transition: box-shadow .3s, background .3s, backdrop-filter .3s;
}

.site-header.scrolled {
    background: rgba(243, 250, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
}

.site-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -.3px;
}

.site-nav { display: flex; align-items: center; gap: 32px; }

.site-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--on-surface-variant);
    transition: color .2s;
    position: relative;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--primary);
}

.site-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    display: none;
}

.btn-header {
    background: var(--primary-container);
    color: var(--on-primary-container);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: opacity .15s, transform .15s;
    white-space: nowrap;
}
.btn-header:hover { opacity: .88; }
.btn-header:active { transform: scale(.97); }

/* ---------- REUSABLE BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: opacity .15s, transform .15s;
}
.btn-primary:hover { opacity: .90; }
.btn-primary:active { transform: scale(.98); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: background .15s;
}
.btn-outline:hover { background: rgba(19,105,100,.06); }

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-fixed-dim);
    color: var(--on-primary-container);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 40px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: background .2s;
}
.btn-primary-light:hover { background: var(--primary-container); }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.btn-link:hover { text-decoration: underline; }
.btn-link .material-symbols-outlined { font-size: 18px; }

/* ---------- SECTION HELPERS ---------- */
.section {
    padding: var(--section-py) 0;
}

.section-alt {
    background: var(--surface-container-low);
    padding: var(--section-py) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -.3px;
    color: var(--on-surface);
    margin-bottom: 8px;
}
.section-header p {
    font-size: 16px;
    color: var(--on-surface-variant);
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.section-header-row h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -.3px;
    color: var(--on-surface);
    margin-bottom: 6px;
}
.section-header-row p {
    font-size: 16px;
    color: var(--on-surface-variant);
}

.text-center { text-align: center; }

/* ============================================================
   HERO
============================================================ */
.hero-section {
    position: relative;
    overflow: clip;
    padding: 56px var(--px-desktop) var(--section-py);
    max-width: var(--max-w);
    margin: 0 auto;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--on-surface);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: var(--on-surface-variant);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-image-wrap {
    position: relative;
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* fallback background when no image */
.hero-image-wrap:not(:has(img[src])) {
    background: var(--surface-container-high);
}

.hero-blob {
    position: absolute;
    top: -96px;
    right: -96px;
    width: 384px;
    height: 384px;
    background: var(--primary-fixed);
    opacity: .20;
    border-radius: 50%;
    filter: blur(64px);
    z-index: -1;
    pointer-events: none;
}

/* ============================================================
   TIPS GRID
============================================================ */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: transform .2s;
}
.tip-card:hover { transform: translateY(-4px); }

.tip-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.tip-icon .material-symbols-outlined { font-size: 28px; }

.tip-icon--blue  { background: rgba(93,167,219,.15); color: var(--primary); }
.tip-icon--teal  { background: rgba(19,105,100,.12); color: var(--secondary); }
.tip-icon--slate { background: rgba(79,97,105,.12);  color: var(--tertiary); }

.tip-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--on-surface);
    margin-bottom: 8px;
}
.tip-card p {
    font-size: 15px;
    color: var(--on-surface-variant);
    line-height: 1.65;
}

/* ============================================================
   VIDEO GRID
============================================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    display: block;
    color: inherit;
    cursor: pointer;
}
.video-card:hover .video-thumb img,
.video-card:hover .video-thumb-placeholder { transform: scale(1.05); }
.video-card:hover .video-play-overlay { opacity: 1; }

.video-thumb {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
}

.video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.video-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: transform .5s ease;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.vtp--green  { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.vtp--teal   { background: linear-gradient(135deg, #136964, #35b5aa); }
.vtp--sky    { background: linear-gradient(135deg, #005f8e, #4ab3d8); }

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,30,39,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
}
.video-play-overlay .material-symbols-outlined {
    font-size: 64px;
    color: #fff;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.video-meta .video-cat {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .01em;
    margin-bottom: 4px;
}
.video-meta h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--on-surface);
    line-height: 1.35;
}

/* ============================================================
   KOTAK CURHAT
============================================================ */
.curhat-section {
    background: var(--surface-container);
    padding: var(--section-py) var(--px-desktop);
}

.curhat-box {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-container-lowest);
    border-radius: 40px;
    padding: 48px 56px;
    box-shadow: var(--shadow-card);
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19,105,100,.10);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.privacy-badge .material-symbols-outlined { font-size: 18px; }

.curhat-box h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--on-surface);
    margin-bottom: 10px;
    letter-spacing: -.3px;
}
.curhat-box > p {
    font-size: 16px;
    color: var(--on-surface-variant);
    margin-bottom: 32px;
}

.alert-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #d1fae5;
    color: #065f46;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--on-surface);
}
.form-label .optional {
    color: var(--outline);
    font-weight: 400;
    font-size: 13px;
}

.form-control {
    width: 100%;
    background: rgba(79,97,105,.06);
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 15px;
    color: var(--on-surface);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: box-shadow .2s;
}
.form-control:focus {
    box-shadow: 0 0 0 2px var(--primary);
}
.form-control::placeholder { color: var(--outline); }

textarea.form-control { resize: none; }

select.form-control { cursor: pointer; }

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity .15s, transform .15s, box-shadow .2s;
    font-family: 'Inter', sans-serif;
}
.btn-submit:hover { opacity: .90; box-shadow: var(--shadow-md); }
.btn-submit:active { transform: scale(.99); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

.curhat-blob {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: var(--secondary-container);
    opacity: .12;
    border-radius: 50%;
    filter: blur(24px);
    pointer-events: none;
}

/* ============================================================
   MINAT / KUIS GRID
============================================================ */
.minat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.minat-card {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.minat-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.minat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.minat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.minat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.minat-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.minat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: #fff;
}

.minat-text-group h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #ffffff;
}

.minat-text-group p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   FOOTER (includes/footer.php)
============================================================ */
.site-footer {
    background: var(--surface-container-low);
    padding: var(--section-py) var(--px-desktop);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.footer-brand { max-width: 380px; }

.footer-brand .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 13px;
    color: var(--on-surface-variant);
    opacity: .85;
    transition: opacity .15s, color .15s;
}
.footer-col a:hover { color: var(--secondary); opacity: 1; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-btn {
    width: 38px; height: 38px;
    border-radius: var(--radius-full);
    background: rgba(19,105,100,.10);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: background .2s;
}
.social-btn:hover { background: var(--secondary-container); }
.social-btn .material-symbols-outlined { font-size: 20px; }

/* ---------- HEADER TAMBAHAN ---------- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-nav-user {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--on-surface-variant);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    transition: background .15s;
}
.btn-nav-user:hover { background: var(--surface-container-low); }

.btn-header-outline {
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--primary);
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.btn-header-outline:hover { background: rgba(0,100,147,.07); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--on-surface);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .site-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--surface);
        padding: 16px var(--px-desktop);
        gap: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        padding: 10px 0;
        border-bottom: 1px solid var(--outline-variant);
        font-size: 15px;
    }
    .site-nav a:last-child { border-bottom: none; }

    .header-actions { gap: 8px; }
    .btn-nav-user span { display: none; }
}

@media (max-width: 600px) {
    .header-actions .btn-header-outline { display: none; }
}

/* ============================================================
   RESPONSIVE (base)
============================================================ */
@media (max-width: 900px) {
    :root {
        --px-desktop: 24px;
        --section-py: 48px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-title { font-size: 36px; }
    .hero-image-wrap { height: 300px; }

    .video-grid,
    .minat-grid { grid-template-columns: 1fr; }

    .curhat-box { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .section-header-row { flex-direction: column; align-items: flex-start; }

    .footer-inner { flex-direction: column; }
    .footer-links { gap: 32px; }
}

@media (max-width: 600px) {
    :root { --px-desktop: var(--px-mobile); }

    .hero-title { font-size: 28px; }
    .hero-desc  { font-size: 16px; }

    .site-nav { display: none; }

    .video-grid { grid-template-columns: 1fr; }
    .minat-grid { grid-template-columns: 1fr; }
    .minat-card { height: 240px; }
}

/* ============================================================
   LAYANAN & BIMBINGAN — REDESIGN (accordion cards, matches mockup)
   These rules intentionally come after the base .tips-grid / .tip-card
   rules above and override them for the "Layanan & Bimbingan" section.
============================================================ */

/* Cards stack full-width, one per row, instead of a 3-column grid */
#layanan .tips-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

#layanan .tip-card {
    padding: 32px 40px 40px;
    cursor: default;
}
#layanan .tip-card:hover { transform: none; }

/* --- Accordion header --- */
.tip-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    padding: 0;
    margin-bottom: 24px;
}

.tip-icon-emoji {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.tip-card-header h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #6d28d9;
    margin-bottom: 0;
}

.accordion-chevron {
    color: var(--on-surface-variant);
    font-size: 22px;
    flex-shrink: 0;
    transition: transform .25s;
}

.accordion-card .card-body {
    display: block;
}
.accordion-card.is-collapsed .card-body { display: none; }
.accordion-card.is-collapsed .accordion-chevron { transform: rotate(180deg); }

/* --- Two-column row for paired boxes (Minat/Bakat, Soft/Hard skills) --- */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* --- Colored content blocks --- */
#layanan .content-block {
    border-radius: 20px;
    padding: 22px 26px;
    margin-bottom: 20px;
}
#layanan .content-block:last-child { margin-bottom: 0; }

#layanan .content-block h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}
#layanan .content-block p {
    font-size: 14.5px;
    color: #3f3f46;
    line-height: 1.65;
    margin-bottom: 8px;
}
#layanan .content-block small {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

.card-intro {
    font-size: 15px;
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-bottom: 24px;
}

.content-block--pink   { background: #fbe4ef; }
.content-block--pink h4 { color: #c0197a; }

.content-block--purple { background: #f0e6fb; }
.content-block--purple h4 { color: #7c3aed; }

.content-block--orange { background: #fdefd9; }
.content-block--orange h4 { color: #e2711d; }

.content-block--gray   { background: #eceff3; }
.content-block--gray h4 { color: #1f2937; }

.content-block--gradient {
    background: linear-gradient(135deg, #fbe4ef, #f0e6fb);
}
.content-block--gradient h4 { color: #7c3aed; }

/* --- Checklist with green check emoji --- */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.check-list li {
    font-size: 14.5px;
    color: #3f3f46;
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-list li::before {
    content: "✅";
    font-size: 13px;
    flex-shrink: 0;
}

/* --- Step list (numbered, gray box) --- */
.step-list {
    list-style: decimal;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.step-list li {
    font-size: 14.5px;
    color: #3f3f46;
}

/* --- Inline checkmark line ("Sesuaikan dengan: ✓ Minat ✓ Bakat ...") --- */
.inline-checks {
    font-size: 14.5px;
    color: #3f3f46;
    line-height: 1.9;
}

/* --- Table (Prospek Kerja Jurusan) --- */
#layanan .table-mini {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}
#layanan .table-mini thead th {
    background: #f0e6fb;
    color: #4c1d95;
    text-align: left;
    font-weight: 700;
    padding: 12px 16px;
}
#layanan .table-mini thead th:first-child { border-radius: 12px 0 0 12px; }
#layanan .table-mini thead th:last-child  { border-radius: 0 12px 12px 0; }
#layanan .table-mini tbody td {
    padding: 12px 16px;
    color: #3f3f46;
    border-bottom: 1px solid var(--outline-variant);
}
#layanan .table-mini tbody tr:last-child td { border-bottom: none; }

/* --- Soft Skills / Hard Skills columns --- */
.skill-col {
    border-radius: 20px;
    padding: 22px 26px;
}
.skill-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}
.skill-col--pink   { background: #fbe4ef; }
.skill-col--pink h4 { color: #c0197a; }
.skill-col--purple { background: #f0e6fb; }
.skill-col--purple h4 { color: #7c3aed; }

.emoji-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.emoji-list li {
    font-size: 14.5px;
    color: #3f3f46;
    display: flex;
    align-items: center;
    gap: 10px;
}
.emoji-list li span { flex-shrink: 0; }

/* --- Responsive --- */
@media (max-width: 700px) {
    .content-row { grid-template-columns: 1fr; }
    #layanan .tip-card { padding: 24px; }
}