:root {
    --primary: #11999E;
    /* teal utama initiatoracademy */
    --primary-dark: #0d7a7e;
    --accent: #40E0D0;
    /* turquoise accent */
    --accent-light: #11999E1a;
    --accent-dark: #0a6e72;
    --pink: #30E3CA;
    /* mint accent (pengganti pink) */
    --secondary: #0f172a;
    /* deep navy charcoal */
    --text: #334155;
    --gray: #64748b;
    --light: #f1f5f9;
    --border: #e2e8f0;
    --font: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(17, 153, 158, 0.06);
    --shadow-md: 0 8px 24px rgba(17, 153, 158, 0.12);
    --shadow-lg: 0 20px 50px rgba(17, 153, 158, 0.18);
    --gradient-primary: linear-gradient(135deg, #11999E 0%, #40E0D0 100%);
    --gradient-accent: linear-gradient(135deg, #40E0D0 0%, #11999E 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============ Preloader / Loading Screen ============ */
/* Overlay tampil sejak paint pertama, lalu disembunyikan via .loaded (JS) */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    background: linear-gradient(160deg, #0a2528 0%, #0f3d40 55%, #11595e 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

/* Glow lembut di belakang logo */
.preloader::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.18), transparent 65%);
    filter: blur(8px);
}

.preloader__logo {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

.preloader__logo img {
    max-width: 104px;
    max-height: 104px;
    object-fit: contain;
}

/* Cincin berputar di sekeliling logo */
.preloader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--accent);
    border-right-color: var(--accent);
    animation: preloaderSpin 0.9s linear infinite;
}

.preloader__brand {
    position: relative;
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: #fff;
}

.preloader__brand span {
    color: var(--accent);
}

.preloader__bar {
    position: relative;
    width: 160px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.preloader__bar::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 40%;
    border-radius: 4px;
    background: var(--gradient-primary);
    animation: preloaderBar 1.2s ease-in-out infinite;
}

/* Saat selesai: fade out lalu non-aktifkan interaksi */
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Cegah scroll selama loading */
body.is-loading {
    overflow: hidden;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes preloaderBar {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(360%); }
}

@media (prefers-reduced-motion: reduce) {
    .preloader__ring,
    .preloader__logo,
    .preloader__bar::before {
        animation: none;
    }
}

body {
    font-family: var(--font);
    color: var(--text);
    background: white;
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--primary);
}

.section-padding {
    padding: 90px 0;
}

.bg-light {
    background: var(--light);
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 55px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

/* Buttons - bounce hover ala dibimbing */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(17, 153, 158, 0.30);
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(17, 153, 158, 0.40);
    background: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-left: 10px;
    background: white;
    transition: transform 0.15s ease-out;
}

.btn-outline:hover {
    transform: translateY(-4px);
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: var(--accent);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.15s ease-out;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--accent-dark);
}

.btn-block {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 13px;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: 700;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.25);
}

.btn-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(17, 153, 158, 0.35);
    background: var(--primary-dark);
}

/* Navbar - putih dengan backdrop blur */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.nav-toggle:hover {
    background: var(--light);
    color: var(--primary);
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    transition: transform 0.2s ease-out;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo img {
    height: 46px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 38px;
    }
}

/* footer/dark variant: logo dengan background terang biar tetap kontras di atas navy */
.footer-logo {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.footer-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero - gradient lembut + headline gradient text */
.hero {
    text-align: center;
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(17, 153, 158, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 208, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #fafbff 0%, white 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(48, 227, 202, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero h1 {
    font-size: 5.5rem;
    color: var(--secondary);
    margin-bottom: 28px;
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
}

.text-highlight {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.hero p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-group {
    margin-bottom: 70px;
}

.trust-badge {
    margin-top: 20px;
    color: var(--gray);
    font-size: 0.85rem;
}

.trust-badge small {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.trust-badge p {
    color: var(--secondary);
    font-weight: 600;
    margin-top: 5px;
    font-size: 0.95rem;
}

/* Stats - gradient background ala dibimbing */
.stats {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(64, 224, 208, 0.22), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(17, 153, 158, 0.35), transparent 50%),
        linear-gradient(135deg, #0a2528 0%, #0f3d40 55%, #11595e 100%);
}

/* pola grid halus sebagai tekstur latar */
.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 80%);
    pointer-events: none;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* kartu kaca melayang */
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

/* kilau aksen di tepi atas kartu */
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(64, 224, 208, 0.5);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 10px 22px -8px rgba(64, 224, 208, 0.7);
    transition: transform 0.35s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.08) rotate(-4deg);
}

.stat-body {
    text-align: left;
    line-height: 1.1;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff, #c8f5f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 0;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        justify-content: flex-start;
    }
}

/* Features grid - rounded card dengan shadow ala dibimbing */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    background: #fff;
    padding: 34px 30px;
    border-radius: 22px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* garis aksen gradient di tepi atas, muncul saat hover */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 50px -24px rgba(17, 153, 158, 0.5);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* nomor urut samar sebagai aksen editorial */
.feature-num {
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
    opacity: 0.06;
    letter-spacing: -2px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-num {
    opacity: 0.12;
    color: var(--primary);
}

/* glow lembut yang muncul dari pojok saat hover */
.feature-glow {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.icon-box {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 12px 26px -10px rgba(17, 153, 158, 0.7);
    transition: transform 0.35s ease;
}

.feature-card:hover .icon-box {
    transform: translateY(-4px) rotate(-6deg);
}

.feature-card h4 {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: -0.3px;
}

.feature-card p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
}

/* Agenda - rounded modern dengan shadow */
.agenda-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.15s ease-out, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.agenda-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.agenda-img-box {
    position: relative;
    height: 200px;
}

.agenda-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agenda-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.30);
}

.agenda-body {
    padding: 24px;
}

.agenda-cat {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.agenda-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--secondary);
    line-height: 1.4;
    font-weight: 700;
}

.agenda-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.agenda-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.agenda-link:hover {
    color: var(--primary-dark);
}

/* Programs Cards */
.grid-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.15s ease-out, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light);
}

.card-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.badge-cat {
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 700;
}

.original-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-right: 8px;
}

.current-price {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.35rem;
}

/* Our Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.expertise-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* lapisan teal yang menyapu masuk saat hover */
.expertise-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -22px rgba(17, 153, 158, 0.6);
    border-color: transparent;
}

.expertise-item:hover::before {
    transform: translateX(0);
}

.expertise-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(17, 153, 158, 0.1);
    color: var(--primary);
    font-size: 1.4rem;
    transition: background 0.35s ease, color 0.35s ease;
}

.expertise-item:hover .expertise-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.expertise-info {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.expertise-info h5 {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
    letter-spacing: -0.2px;
    transition: color 0.35s ease;
}

.expertise-info small {
    color: var(--gray);
    font-size: 0.8rem;
    transition: color 0.35s ease;
}

.expertise-item:hover .expertise-info h5 {
    color: #fff;
}

.expertise-item:hover .expertise-info small {
    color: rgba(255, 255, 255, 0.85);
}

.expertise-arrow {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    color: var(--border);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.expertise-item:hover .expertise-arrow {
    color: #fff;
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 900px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Customer Logo Slider (marquee) */
.logo-slider {
    position: relative;
    width: 100%;
    padding: 14px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: logoScroll 36s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-card {
    position: relative;
    flex: 0 0 auto;
    width: 190px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 6px 16px -10px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Aksen teal tipis yang muncul saat hover */
.logo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 153, 158, 0.06), rgba(64, 224, 208, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(17, 153, 158, 0.35);
    box-shadow: 0 18px 32px -16px rgba(17, 153, 158, 0.45);
}

.logo-card:hover::before {
    opacity: 1;
}

.logo-card img {
    position: relative;
    max-height: 52px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Fallback teks: tampil sebagai badge brand yang rapi bila gambar gagal dimuat */
.logo-fallback {
    position: relative;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.4px;
    color: var(--secondary);
    white-space: nowrap;
    text-align: center;
    transition: color 0.3s ease;
}

.logo-card:hover .logo-fallback {
    color: var(--primary);
}

/* Daftar dirender 2x; geser tepat -50% track (termasuk 1 gap) untuk loop mulus */
@keyframes logoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 12px)); }
}

@media (max-width: 600px) {
    .logo-card {
        width: 150px;
        height: 90px;
        padding: 16px;
    }

    .logo-track {
        gap: 16px;
        animation-duration: 26s;
    }
}

/* Testimonials */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 28px;
}

.testi-card {
    background: #fff;
    padding: 38px 36px 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* garis aksen teal di sisi kiri */
.testi-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px -20px rgba(15, 23, 42, 0.35);
    border-color: transparent;
}

.testi-card:hover::after {
    opacity: 1;
}

/* tanda kutip dekoratif besar */
.testi-card::before {
    content: "\201C";
    position: absolute;
    top: 6px;
    left: 26px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testi-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testi-text {
    color: var(--text);
    margin-bottom: 26px;
    font-size: 1.02rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.testi-avatar {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--gradient-primary);
    padding: 3px;
    box-shadow: 0 6px 16px -6px rgba(17, 153, 158, 0.6);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

.testi-user h5 {
    margin: 0 0 2px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.02rem;
}

.testi-user small {
    color: var(--gray);
    font-size: 0.88rem;
}

.testi-user small strong {
    color: var(--primary);
    font-weight: 700;
}

/* FAQ */
/* ====== FAQ + Brosur ====== */
.faq-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

.faq-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(17, 153, 158, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.faq-box h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.faq-intro {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 12px 30px -16px rgba(17, 153, 158, 0.5);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--secondary);
    transition: color 0.2s ease;
}

.faq-q:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(17, 153, 158, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

/* tanda + digambar dengan 2 garis CSS agar presisi di tengah */
.faq-plus,
.faq-plus::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary);
    border-radius: 2px;
    transition: background 0.3s ease, opacity 0.3s ease;
}

/* garis horizontal */
.faq-plus {
    width: 12px;
    height: 2.5px;
    transform: translate(-50%, -50%);
}

/* garis vertikal */
.faq-plus::before {
    width: 2.5px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
    background: var(--primary);
    transform: rotate(180deg);
}

.faq-item.open .faq-plus,
.faq-item.open .faq-plus::before {
    background: #fff;
}

/* sembunyikan garis vertikal saat terbuka -> jadi tanda minus */
.faq-item.open .faq-plus::before {
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--gray);
    line-height: 1.7;
}

/* Brosur card */
.brochure-card {
    position: sticky;
    top: 90px;
    background: linear-gradient(160deg, #0f2b2c 0%, var(--secondary) 100%);
    color: #fff;
    padding: 38px 34px;
    border-radius: 22px;
    box-shadow: 0 28px 55px -22px rgba(15, 23, 42, 0.6);
    overflow: hidden;
}

.brochure-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.35), transparent 70%);
    pointer-events: none;
}

.brochure-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-primary);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px -8px rgba(17, 153, 158, 0.8);
}

.brochure-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -0.4px;
}

.brochure-sub {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.brochure-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brochure-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 0 16px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.brochure-input:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

.brochure-input i {
    color: var(--accent);
    font-size: 0.95rem;
}

.brochure-input input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 0;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.brochure-input input::placeholder {
    color: #94a3b8;
}

.brochure-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.brochure-perks {
    list-style: none;
    margin: 26px 0 22px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brochure-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.brochure-perks i {
    color: var(--accent);
    font-size: 0.95rem;
}

.brochure-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.brochure-wa:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
}

.brochure-wa i {
    color: #25D366;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .brochure-card {
        position: static;
    }
}

/* Footer */
footer {
    background: var(--secondary);
    color: #cbd5e1;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 700;
}

.social-links a {
    color: white;
    font-size: 1.1rem;
    margin-right: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.15s ease-out;
}

.social-links a:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-4px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 22px;
    font-size: 0.85rem;
}

.footer-col p i {
    width: 20px;
    margin-right: 10px;
    color: var(--accent);
}

/* ============================
   SECTION TAMBAHAN ALA MENTORPOWERBI
   ============================ */

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.welcome-text p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.welcome-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.welcome-thumbs img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.welcome-thumbs img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Our Service - 3 pilar */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 2rem;
    box-shadow: 0 12px 24px rgba(17, 153, 158, 0.30);
}

.service-card h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Objektif Training */
.objektif-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.objektif-img img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.objektif-text h2 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.objektif-text>p {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.objektif-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.objektif-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 1rem;
}

.objektif-list li i {
    color: white;
    background: var(--gradient-primary);
    font-size: 0.8rem;
    padding: 5px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.objektif-features {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.objektif-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-light);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.88rem;
}

.objektif-feature i {
    color: var(--accent);
}

/* Featured Project / Dashboard */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--light);
}

.project-body {
    padding: 26px;
}

.project-body h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.project-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.project-link {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.15s ease-out;
}

.project-link:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

.project-link i {
    margin-right: 6px;
}

/* Pilih Kelas - Table Perbandingan */
/* ====== Kartu Pricing "Pilih Kelas Anda" ====== */
.kelas-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 10px;
}

.kelas-card {
    --kelas-accent: var(--primary);
    --kelas-accent-soft: rgba(17, 153, 158, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px 26px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kelas-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    border-radius: 22px 22px 0 0;
    background: var(--kelas-accent);
}

.kelas-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--kelas-accent);
}

/* aksen warna per tipe kelas */
.kelas-card.kelas-blue   { --kelas-accent:#2563eb; --kelas-accent-soft:rgba(37,99,235,0.1); }
.kelas-card.kelas-teal   { --kelas-accent:#11999E; --kelas-accent-soft:rgba(17,153,158,0.12); }
.kelas-card.kelas-purple { --kelas-accent:#7c3aed; --kelas-accent-soft:rgba(124,58,237,0.1); }
.kelas-card.kelas-orange { --kelas-accent:#ea580c; --kelas-accent-soft:rgba(234,88,12,0.1); }

/* kartu populer diangkat & ditegaskan */
.kelas-card.is-popular {
    border-color: var(--kelas-accent);
    box-shadow: 0 24px 50px -18px rgba(17, 153, 158, 0.45);
    transform: translateY(-14px) scale(1.02);
    z-index: 2;
}

.kelas-card.is-popular:hover {
    transform: translateY(-20px) scale(1.02);
}

.kelas-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kelas-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.25);
}

.kelas-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.kelas-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--kelas-accent-soft);
    color: var(--kelas-accent);
    font-size: 1.25rem;
}

.kelas-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.kelas-card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 22px;
    margin-bottom: 6px;
    border-bottom: 1px dashed var(--border);
}

.kelas-price-note {
    font-size: 0.8rem;
    color: var(--gray);
}

.kelas-price-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--kelas-accent);
    letter-spacing: -1px;
}

.kelas-specs {
    list-style: none;
    margin: 18px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.kelas-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
}

.kelas-spec-label {
    color: var(--gray);
    flex-shrink: 0;
}

.kelas-spec-val {
    color: var(--secondary);
    font-weight: 600;
    text-align: right;
}

.kelas-spec-bool i {
    font-size: 1.15rem;
}

.kelas-spec-bool i.yes {
    color: var(--kelas-accent);
}

.kelas-spec-bool i.no {
    color: #cbd5e1;
}

.kelas-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--kelas-accent);
    background: var(--kelas-accent-soft);
    border: 1.5px solid transparent;
    transition: background 0.25s ease, color 0.25s ease, gap 0.25s ease;
}

.kelas-cta:hover {
    background: var(--kelas-accent);
    color: #fff;
    gap: 12px;
}

.kelas-card.is-popular .kelas-cta {
    background: var(--kelas-accent);
    color: #fff;
}

.kelas-card.is-popular .kelas-cta:hover {
    filter: brightness(1.08);
}

@media (max-width: 1100px) {
    .kelas-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .kelas-card.is-popular {
        transform: none;
    }
    .kelas-card.is-popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 560px) {
    .kelas-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================
   HALAMAN OUR-MODUL
   ============================ */

/* Hero kecil di halaman dalam */
.page-hero {
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(17, 153, 158, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(64, 224, 208, 0.10) 0%, transparent 50%),
        linear-gradient(180deg, #fafbff 0%, white 100%);
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -1.2px;
    font-weight: 800;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Jenis Pelatihan benefits list */
.benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-item .benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
}

.benefit-item h5 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Modul Card */
.modul-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.modul-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.modul-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.modul-card h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.modul-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.modul-meta span {
    background: var(--light);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.modul-meta span i {
    color: var(--primary);
    font-size: 0.7rem;
}

.modul-card>p {
    color: var(--gray);
    font-size: 0.93rem;
    margin-bottom: 18px;
    flex: 1;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.skill-tag {
    background: var(--accent-light);
    color: var(--accent-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.modul-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modul-cta .btn-primary,
.modul-cta .btn-outline {
    flex: 1;
    text-align: center;
    padding: 11px 14px;
    font-size: 0.82rem;
    margin: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* Closing CTA Banner */
.cta-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 40px;
    border-radius: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.3) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-banner>* {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-primary:hover {
    background: var(--light);
    color: var(--primary-dark);
}

.cta-banner .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-banner .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* ============================
   HALAMAN PRIVATE MENTORING
   ============================ */

/* Exclusive 1-on-1 Section */
.exclusive-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}

.exclusive-text h2 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.exclusive-text>p {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.exclusive-perks {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.exclusive-perk {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.exclusive-perk .perk-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 6px 14px rgba(17, 153, 158, 0.30);
}

.exclusive-perk h5 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.exclusive-perk p {
    color: var(--gray);
    font-size: 0.92rem;
    margin: 0;
}

.exclusive-img {
    position: relative;
}

.exclusive-img img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.exclusive-img::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: var(--gradient-accent);
    z-index: -1;
    opacity: 0.6;
}

.exclusive-img::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0.4;
}

/* Mentor Topic Card */
.mentor-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.mentor-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.mentor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mentor-card:hover .mentor-img-wrap img {
    transform: scale(1.08);
}

.mentor-img-wrap .mentor-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.35);
}

.mentor-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mentor-body h3 {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.mentor-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 18px;
    flex: 1;
}

.mentor-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.mentor-meta span {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mentor-meta span i {
    color: var(--accent);
}

/* WhatsApp floating widget */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: transform 0.15s ease-out;
    z-index: 99;
}

.wa-float:hover {
    transform: translateY(-4px);
    color: white;
}

.wa-float i {
    font-size: 1.3rem;
}

/* ============================
   HALAMAN DASHBOARD SHOWCASE
   ============================ */

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-tab {
    background: white;
    color: var(--secondary);
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease-out;
    font-family: var(--font);
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(17, 153, 158, 0.30);
}

/* Dashboard Card */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.dashboard-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.dashboard-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light);
}

.dashboard-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dashboard-card:hover .dashboard-img-wrap img {
    transform: scale(1.05);
}

.dashboard-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-body h3 {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dashboard-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
}

.dashboard-cta {
    display: flex;
    gap: 10px;
}

.dashboard-cta a {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    transition: transform 0.15s ease-out;
}

.dashboard-cta .demo-btn {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.dashboard-cta .demo-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.dashboard-cta .buy-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.25);
}

.dashboard-cta .buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 153, 158, 0.40);
}

/* CTA dual choice */
.dual-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.dual-cta-box {
    background: white;
    padding: 36px 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.dual-cta-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.dual-cta-box .dual-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.dual-cta-box.learn .dual-icon {
    background: var(--accent-light);
    color: var(--accent);
}

.dual-cta-box.trust .dual-icon {
    background: var(--gradient-primary);
    color: white;
}

.dual-cta-box h3 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dual-cta-box p {
    color: var(--gray);
    font-size: 0.93rem;
    margin-bottom: 22px;
}

/* ============================
   HALAMAN COURSE DETAIL
   ============================ */

/* Course Hero - 2 kolom (image + info) */
.course-hero {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, #fafbff 0%, white 100%);
}

.course-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.course-hero-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.course-hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.course-hero-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
    transition: transform 0.2s;
}

.course-hero-image .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.course-meta-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.course-meta-tags span {
    background: var(--accent-light);
    color: var(--accent-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-hero-info h1 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.course-rating .stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.course-rating .rating-num {
    color: var(--secondary);
    font-weight: 700;
}

.course-rating .reviews {
    color: var(--gray);
    font-size: 0.9rem;
}

.course-instructor-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--light);
    border-radius: 16px;
    margin-bottom: 24px;
}

.course-instructor-mini img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.course-instructor-mini .ins-info small {
    color: var(--gray);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.course-instructor-mini .ins-info h5 {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    margin: 2px 0;
}

.course-instructor-mini .ins-info p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Course Stats (Info Cards Under Hero) */
.course-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.course-stat {
    background: white;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.15s;
}

.course-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: transparent;
}

.course-stat i {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-stat h4 {
    color: var(--secondary);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.course-stat p {
    color: var(--gray);
    font-size: 0.8rem;
    margin: 0;
}

/* Course Body 2-kolom: content + sidebar sticky */
.course-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    padding: 60px 0;
}

.course-content {
    min-width: 0;
}

.course-sidebar {
    position: sticky;
    top: 100px;
}

/* Sidebar Price Card */
.price-card {
    background: white;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-bottom: 22px;
}

.price-card .price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.price-card .price-row .current {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.9rem;
}

.price-card .price-row .original {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1rem;
}

.price-card .discount-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.price-card .price-features {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.price-card .price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    padding: 8px 0;
    font-size: 0.9rem;
}

.price-card .price-features li i {
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.price-card .btn-block+.btn-block {
    margin-top: 10px;
}

.price-card .btn-outline-block {
    display: block;
    width: 100%;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-align: center;
    padding: 11px;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: 700;
    transition: transform 0.15s ease-out;
}

.price-card .btn-outline-block:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Course Tabs */
.course-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
    overflow-x: auto;
}

.course-tab {
    background: transparent;
    border: none;
    padding: 14px 22px;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray);
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}

.course-tab:hover {
    color: var(--primary);
}

.course-tab.active {
    color: var(--primary);
}

.course-tab.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Content General */
.tab-pane h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.tab-pane h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 22px 0 12px;
    font-weight: 700;
}

.tab-pane p {
    color: var(--text);
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.learn-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.learn-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 0.95rem;
}

.learn-list li i {
    color: white;
    background: var(--gradient-primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Curriculum Accordion */
.chapter {
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s;
}

.chapter:hover {
    box-shadow: var(--shadow-sm);
}

.chapter-head {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    transition: background 0.2s;
}

.chapter-head:hover {
    background: var(--light);
}

.chapter-head .ch-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.chapter-head .ch-num {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--accent-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.chapter.open .ch-num {
    background: var(--gradient-primary);
    color: white;
}

.chapter-head h4 {
    color: var(--secondary);
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.chapter-head small {
    color: var(--gray);
    font-size: 0.78rem;
    font-weight: 600;
    display: block;
    margin-top: 3px;
}

.chapter-head .toggle-icon {
    color: var(--primary);
    font-size: 0.95rem;
    transition: transform 0.3s;
}

.chapter.open .toggle-icon {
    transform: rotate(180deg);
}

.chapter-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.chapter.open .chapter-body {
    max-height: 800px;
}

.chapter-body ul {
    list-style: none;
    padding: 0 22px 18px;
    margin: 0;
}

.chapter-body li {
    padding: 10px 0;
    border-top: 1px dashed var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-size: 0.9rem;
}

.chapter-body li i {
    color: var(--accent);
    width: 16px;
}

.chapter-body li .lesson-time {
    margin-left: auto;
    color: var(--gray);
    font-size: 0.8rem;
}

/* Instructor Profile (Tab) */
.instructor-profile {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding: 24px;
    background: var(--light);
    border-radius: 20px;
    margin-bottom: 20px;
}

.instructor-profile img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
}

.instructor-profile h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.instructor-profile .role {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    display: block;
}

.instructor-profile .ins-stats {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.instructor-profile .ins-stats div {
    font-size: 0.88rem;
    color: var(--gray);
}

.instructor-profile .ins-stats strong {
    display: block;
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Review Card */
.review-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 14px;
    background: white;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.review-head img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.review-head h5 {
    color: var(--secondary);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 700;
}

.review-head .stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 2px;
}

.review-card p {
    color: var(--text);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================
   SECTION INIT CLASS (di index.php)
   ============================ */
.init-class-section {
    background: linear-gradient(180deg, #fafbff 0%, white 100%);
}

.init-class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.init-class-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
    position: relative;
}

.init-class-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.init-class-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light);
}

.init-class-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.init-class-card:hover .init-class-thumb img {
    transform: scale(1.08);
}

.init-class-thumb .ic-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.35);
}

.init-class-thumb .ic-rating {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.init-class-thumb .ic-rating i {
    color: #fbbf24;
}

.init-class-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.init-class-body h3 {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.35;
    min-height: 50px;
}

.init-class-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 600;
}

.init-class-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.init-class-meta i {
    color: var(--accent);
}

.init-class-body>p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 18px;
    flex: 1;
    line-height: 1.6;
}

.init-class-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px dashed var(--border);
    margin-bottom: 16px;
}

.init-class-price .ic-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.85rem;
}

.init-class-price .ic-current {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.35rem;
}

.init-class-cta {
    display: flex;
    gap: 10px;
}

.init-class-cta a {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.15s ease-out;
}

.init-class-cta .ic-detail {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.25);
}

.init-class-cta .ic-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 153, 158, 0.40);
}

.init-class-cta .ic-buy {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.init-class-cta .ic-buy:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* ============================
   INIT CLASS - E-COURSE refinements
   ============================ */
.init-class-header {
    text-align: center;
    margin-bottom: 30px;
}

.ic-type-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(17, 153, 158, 0.10), rgba(64, 224, 208, 0.10));
    color: var(--primary);
    border: 1px solid rgba(17, 153, 158, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ic-type-pill i {
    color: var(--accent);
}

/* Submenu E-Course */
.ic-submenu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 10px;
    padding: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 60px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ic-submenu-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease-out;
}

.ic-submenu-item:hover {
    background: var(--light);
    color: var(--primary);
}

.ic-submenu-item.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.30);
}

.ic-submenu-item i {
    font-size: 0.85rem;
}

/* E-Course tag on thumbnail */
.ic-ecourse-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    color: #fde68a;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(6px);
}

.ic-ecourse-tag i {
    color: #fbbf24;
}

/* Silabus preview inside card */
.ic-syllabus-preview {
    background: var(--light);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 4px 0 18px;
    border-left: 3px solid var(--accent);
}

.ic-syllabus-preview h6 {
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ic-syllabus-preview h6 i {
    color: var(--primary);
}

.ic-syllabus-preview ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ic-syllabus-preview li {
    font-size: 0.82rem;
    color: var(--text);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ic-syllabus-preview li i {
    color: var(--accent);
    font-size: 0.7rem;
}

/* Price row with discount badge */
.init-class-price {
    justify-content: space-between;
    align-items: center;
}

.init-class-price .ic-price-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.init-class-price .ic-discount {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* Info strip bawah */
.ic-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
    padding: 28px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.ic-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ic-info-item i {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ic-info-item div {
    display: flex;
    flex-direction: column;
}

.ic-info-item strong {
    color: var(--secondary);
    font-size: 0.92rem;
    font-weight: 800;
}

.ic-info-item span {
    color: var(--gray);
    font-size: 0.78rem;
}

/* ============================
   HALAMAN BLOG / POST
   ============================ */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.post-main {
    min-width: 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.post-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.post-thumb {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--light);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card:hover .post-thumb img {
    transform: scale(1.06);
}

.post-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.35);
}

.post-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
    flex-wrap: wrap;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-meta i {
    color: var(--accent);
}

.post-body h3 {
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 64px;
}

.post-body>p {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.6;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.post-tag {
    background: var(--light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}

.post-readmore {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.post-readmore:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Empty state */
.post-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 30px;
    background: var(--light);
    border-radius: 24px;
}

.post-empty i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 18px;
    display: block;
}

.post-empty h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.post-empty p {
    color: var(--gray);
    margin-bottom: 22px;
}

/* Pagination */
.post-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(17, 153, 158, 0.30);
}

/* Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.sidebar-widget h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 800;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
    position: relative;
}

.sidebar-widget h4::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

/* Sidebar Search */
.sidebar-search {
    display: flex;
    gap: 8px;
}

.sidebar-search input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.sidebar-search input:focus {
    border-color: var(--primary);
}

.sidebar-search button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.15s;
}

.sidebar-search button:hover {
    transform: translateY(-2px);
}

/* Sidebar CTA Block */
.sidebar-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.4) 0%, transparent 60%);
}

.sidebar-cta>* {
    position: relative;
    z-index: 1;
}

.sidebar-cta h4 {
    color: white;
    border: none;
    padding: 0;
    margin-bottom: 10px;
}

.sidebar-cta h4::before {
    display: none;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.sidebar-cta-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 14px;
    display: inline-block;
}

.sidebar-cta .btn-block {
    background: white;
    color: var(--primary);
}

.sidebar-cta .btn-block:hover {
    background: var(--light);
    color: var(--primary-dark);
}

/* Recent Posts list */
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
}

.recent-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-posts li:first-child {
    padding-top: 0;
}

.recent-posts img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.recent-posts a {
    color: var(--secondary);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.recent-posts a:hover {
    color: var(--primary);
}

.recent-posts small {
    color: var(--gray);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.recent-posts small i {
    color: var(--accent);
}

/* Categories list */
.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}

.cat-list li:last-child {
    border-bottom: none;
}

.cat-list a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.cat-list a:hover {
    color: var(--primary);
}

.cat-list span {
    background: var(--accent-light);
    color: var(--accent-dark);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Tag cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    background: var(--light);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
}

.tag-pill:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Newsletter form */
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
    color: var(--secondary);
}

.newsletter-form button {
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    font-family: var(--font);
    white-space: nowrap;
    margin: 0;
    box-shadow: none;
}

/* ============================
   HALAMAN SOCIAL FEEDS (Reels & Posts)
   ============================ */

/* Follow bar di hero & CTA */
.social-follow-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.follow-btn {
    --brand: #11999E;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--brand);
    padding: 12px 22px;
    border-radius: 50px;
    border: 2px solid var(--brand);
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 0.15s ease-out, background 0.2s;
}

.follow-btn i {
    font-size: 1.2rem;
}

.follow-btn:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-4px);
}

.follow-btn-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.follow-btn-light:hover {
    background: white;
    color: var(--brand);
}

/* Stats Strip */
.feed-stats-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.feed-stat-item {
    text-align: center;
}

.feed-stat-item .fs-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feed-stat-item .fs-num i {
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feed-stat-item .fs-label {
    color: var(--gray);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Masonry-like Feed Grid */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.feed-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.3s;
    position: relative;
}

.feed-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Reels punya ratio vertikal (9:16-ish) */
.feed-thumb {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}

.feed-card.feed-reel .feed-thumb {
    aspect-ratio: 9 / 14;
}

.feed-card.feed-feed .feed-thumb {
    aspect-ratio: 1 / 1;
}

.feed-card.feed-video .feed-thumb {
    aspect-ratio: 16 / 10;
}

.feed-card.feed-post .feed-thumb {
    aspect-ratio: 4 / 3;
}

.feed-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feed-card:hover .feed-thumb img {
    transform: scale(1.08);
}

/* Platform badge (top-left circle) */
.feed-platform {
    --brand: #11999E;
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
    z-index: 2;
}

/* Type pill (top-right) */
.feed-type-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.75);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(6px);
    z-index: 2;
}

/* Play overlay for reels/videos */
.feed-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feed-card:hover .feed-play-overlay {
    opacity: 1;
}

.feed-play-overlay i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    padding-left: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
}

.feed-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: monospace;
}

/* Feed body */
.feed-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feed-caption {
    color: var(--secondary);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    font-weight: 500;
}

.feed-engagement {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-top: 1px dashed var(--border);
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 12px;
}

.feed-engagement span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feed-engagement i {
    color: var(--accent);
}

.feed-engagement .fa-heart {
    color: #ef4444;
}

.feed-engagement .feed-date {
    margin-left: auto;
}

.feed-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.feed-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* =========================================
   ABOUT US PAGE
   ========================================= */

/* Hero asimetris */
.about-hero {
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at 85% 15%, rgba(64, 224, 208, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(17, 153, 158, 0.08) 0%, transparent 45%),
        #ffffff;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.about-hero-text h1 {
    font-size: 3.1rem;
    color: var(--secondary);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin-bottom: 22px;
}

.about-hero-text p {
    color: var(--gray);
    font-size: 1.08rem;
    margin-bottom: 30px;
    max-width: 520px;
}

.about-hero-visual {
    position: relative;
}

.about-hero-visual img {
    width: 100%;
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    display: block;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
}

.about-hero-badge {
    position: absolute;
    left: -24px;
    bottom: -24px;
    background: white;
    padding: 18px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
}

.about-hero-badge strong {
    display: block;
    font-size: 1.7rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
}

.about-hero-badge span {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
}

/* Section heading versi rata kiri */
.about-section-heading {
    font-size: 2.1rem;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 18px;
}

/* Our story split */
.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.about-story-img img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    display: block;
    aspect-ratio: 4 / 4.2;
    object-fit: cover;
}

.about-story-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-checklist {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-weight: 600;
}

.about-checklist i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Timeline */
.about-timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 0;
}

.about-timeline::before {
    content: "";
    position: absolute;
    left: 70px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

.about-timeline-marker {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 6px 16px rgba(17, 153, 158, 0.30);
    flex-shrink: 0;
}

.about-timeline-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease-out, box-shadow 0.2s;
}

.about-timeline-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.about-timeline-card h4 {
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-timeline-card p {
    color: var(--gray);
    font-size: 0.96rem;
    margin: 0;
}

/* Values grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
}

.about-value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 26px;
    text-align: left;
    transition: transform 0.2s ease-out, box-shadow 0.2s, border-color 0.2s;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.about-value-card h4 {
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-value-card p {
    color: var(--gray);
    font-size: 0.96rem;
    margin: 0;
}

/* Stats strip (banner gradient) */
.about-stats-strip {
    background: var(--gradient-primary);
    padding: 56px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.about-stat h3 {
    color: white;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.about-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

/* Team */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 26px;
    text-align: center;
    transition: transform 0.2s ease-out, box-shadow 0.2s;
}

.about-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.about-team-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-light);
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-team-card h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-team-role {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.86rem;
    margin-bottom: 12px;
}

.about-team-card p {
    color: var(--gray);
    font-size: 0.94rem;
    margin: 0;
}

/* Tablet / smaller desktop: keep menu on one line */
@media (max-width: 1100px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.82rem;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
        padding: 8px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.25s ease;
    }

    .nav-links.nav-open {
        max-height: 80vh;
        opacity: 1;
        pointer-events: auto;
        overflow-y: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 12px 24px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .welcome-grid,
    .objektif-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    /* About Us responsive */
    .about-hero-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero {
        padding: 55px 0 60px;
    }

    .about-hero-text h1 {
        font-size: 2.1rem;
    }

    .about-story-img {
        order: 2;
    }

    .about-section-heading {
        font-size: 1.7rem;
    }

    .about-hero-badge {
        left: 16px;
        bottom: 16px;
    }

    .about-timeline::before {
        left: 31px;
    }

    .about-timeline-item {
        grid-template-columns: 64px 1fr;
        gap: 18px;
    }

    .about-stat h3 {
        font-size: 2rem;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .exclusive-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exclusive-text h2 {
        font-size: 1.8rem;
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .dual-cta {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .course-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-hero-image img {
        height: 240px;
    }

    .course-hero-info h1 {
        font-size: 1.6rem;
    }

    .course-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-sidebar {
        position: static;
    }

    .learn-list {
        grid-template-columns: 1fr;
    }

    .instructor-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .instructor-profile img {
        margin: 0 auto;
    }

    .instructor-profile .ins-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .init-class-grid {
        grid-template-columns: 1fr;
    }

    .init-class-body h3 {
        min-height: auto;
    }

    .ic-submenu {
        border-radius: 20px;
        padding: 10px;
    }

    .ic-submenu-item {
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .ic-info-strip {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding: 20px;
    }

    .ic-info-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .post-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .post-sidebar {
        position: static;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-body h3 {
        min-height: auto;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 24px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .feed-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 20px;
    }

    .feed-stat-item .fs-num {
        font-size: 1.4rem;
    }

    .feed-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .feed-body {
        padding: 12px;
    }

    .feed-caption {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    .social-follow-bar {
        gap: 8px;
    }

    .follow-btn {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
}