/* ==========================================================================
   vlearning-webinar.css
   Custom CSS for V-Learning Webinar Module (Landing Page & Dashboard)
   ========================================================================== */

:root {
    --vwebinar-primary: #6366f1;
    --vwebinar-primary-dark: #4f46e5;
    --vwebinar-secondary: #ec4899;
    --vwebinar-accent: #8b5cf6;
    --vwebinar-bg: #0f172a;
    --vwebinar-card-bg: #1e293b;
    --vwebinar-text: #f8fafc;
    --vwebinar-text-muted: #94a3b8;
    --vwebinar-border: rgba(255, 255, 255, 0.1);
    --vwebinar-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --vwebinar-radius: 18px;
    --vwebinar-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body.vlearn-webinar-body,
body.vwebinar-dashboard-body {
    font-family: var(--vwebinar-font);
    background-color: #0b0f19;
    color: var(--vwebinar-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* CONTAINER */
.vwebinar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
.vwebinar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--vwebinar-border);
    padding: 16px 0;
}

.vwebinar-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vwebinar-logo {
    height: 40px;
    width: auto;
}

.vwebinar-nav-col {
    display: flex;
    gap: 28px;
}

.vwebinar-nav-link {
    color: var(--vwebinar-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.vwebinar-nav-link:hover {
    color: var(--vwebinar-primary);
}

.vwebinar-action-col {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vwebinar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vwebinar-btn-login {
    background: linear-gradient(135deg, var(--vwebinar-primary), var(--vwebinar-secondary));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.vwebinar-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.vwebinar-btn-dashboard {
    background: #1e293b;
    color: #38bdf8;
    border: 1px solid #38bdf8;
}

.vwebinar-btn-logout {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.vwebinar-btn-logout:hover {
    background: rgba(239, 68, 68, 0.3);
}

/* ==================== HERO SECTION ==================== */
.vwebinar-hero-sec {
    padding: 90px 0 70px;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.12), transparent 50%);
}

.vwebinar-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.vwebinar-thin-badge {
    display: inline-block;
    color: #38bdf8;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.vwebinar-hero-h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px 0;
}

.vwebinar-hero-h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vwebinar-secondary);
    margin: 0 0 16px 0;
}

.vwebinar-hero-sub {
    font-size: 1.05rem;
    color: var(--vwebinar-text-muted);
    max-width: 600px;
    margin-bottom: 28px;
}

.vwebinar-hero-usp-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.vwebinar-usp-pill {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid var(--vwebinar-border);
    border-radius: 18px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.vwebinar-usp-pill i {
    color: var(--vwebinar-primary);
    font-size: 1.1rem;
}

.vwebinar-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vwebinar-cta-primary {
    background: linear-gradient(135deg, var(--vwebinar-primary), var(--vwebinar-primary-dark));
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.vwebinar-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.6);
}

.vwebinar-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid var(--vwebinar-border);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.vwebinar-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.vwebinar-hero-img-wrapper {
    position: relative;
    border-radius: var(--vwebinar-radius);
    overflow: hidden;
    box-shadow: var(--vwebinar-shadow);
    border: 1px solid var(--vwebinar-border);
}

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

.vwebinar-play-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--vwebinar-border);
}

/* ==================== SECTION HEADERS ==================== */
.vwebinar-sec-header {
    text-align: center;
    margin-bottom: 48px;
}

.vwebinar-sec-h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.vwebinar-sec-sub {
    color: var(--vwebinar-text-muted);
    font-size: 1.05rem;
}

.vwebinar-sec-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--vwebinar-primary), var(--vwebinar-secondary));
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ==================== USP SECTION ==================== */
.vwebinar-usp-sec {
    padding: 80px 0;
}

.vwebinar-usp-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.vwebinar-usp-left-card {
    background: var(--vwebinar-card-bg);
    border: 1px solid var(--vwebinar-border);
    border-radius: var(--vwebinar-radius);
    padding: 36px;
    box-shadow: var(--vwebinar-shadow);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vwebinar-usp-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vwebinar-usp-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--vwebinar-primary), var(--vwebinar-accent));
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vwebinar-usp-content h4 {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
    color: #ffffff;
}

.vwebinar-usp-content p {
    margin: 0;
    color: var(--vwebinar-text-muted);
    font-size: 0.95rem;
}

.vwebinar-usp-right-card {
    border-radius: var(--vwebinar-radius);
    overflow: hidden;
    border: 1px solid var(--vwebinar-border);
    box-shadow: var(--vwebinar-shadow);
    height: 100%;
}

.vwebinar-usp-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ==================== MODUL SECTION ==================== */
.vwebinar-modul-sec {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.5);
}

.vwebinar-modul-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.vwebinar-tab-btn {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--vwebinar-border);
    color: var(--vwebinar-text-muted);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.vwebinar-tab-btn:hover {
    color: #ffffff;
    background: rgba(51, 65, 85, 0.8);
}

.vwebinar-tab-btn.active {
    background: linear-gradient(135deg, var(--vwebinar-primary), var(--vwebinar-primary-dark));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.vwebinar-tab-panel {
    display: none;
    background: var(--vwebinar-card-bg);
    border: 1px solid var(--vwebinar-border);
    border-radius: var(--vwebinar-radius);
    padding: 36px;
    box-shadow: var(--vwebinar-shadow);
    animation: fadeIn 0.4s ease;
}

.vwebinar-tab-panel.active {
    display: block;
}

.vwebinar-panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--vwebinar-border);
}

.vwebinar-lesson-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.vwebinar-lesson-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--vwebinar-border);
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #e2e8f0;
    transition: background 0.3s ease;
}

.vwebinar-lesson-item i {
    color: var(--vwebinar-primary);
    font-size: 1.1rem;
}

.vwebinar-lesson-item:hover {
    background: rgba(30, 41, 59, 0.9);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== PRODUCT SECTION ==================== */
.vwebinar-product-sec {
    padding: 90px 0;
}

.vwebinar-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;

}

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

.vwebinar-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.4);
}

.vwebinar-featured-card {
    border: 2px solid var(--vwebinar-primary);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.25);
}

.vwebinar-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.vwebinar-card-img-holder {
    height: 190px;
    overflow: hidden;
}

.vwebinar-card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vwebinar-product-card:hover .vwebinar-card-img-holder img {
    transform: scale(1.05);
}

.vwebinar-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vwebinar-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

.vwebinar-materi-box {
    margin-bottom: 20px;
    background: rgba(15, 23, 42, 0.5);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--vwebinar-border);
}

.vwebinar-materi-head {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    display: block;
    margin-bottom: 8px;
}

.vwebinar-materi-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vwebinar-materi-box li {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vwebinar-materi-box li i {
    color: #38bdf8;
}

.vwebinar-price-tag {
    margin-bottom: 20px;
}

.vwebinar-price-start {
    display: block;
    font-size: 0.85rem;
    color: var(--vwebinar-text-muted);
}

.vwebinar-price-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--vwebinar-secondary);
}

/* TOGGLE DETAIL ACCORDION */
.vwebinar-detail-wrapper {
    margin-bottom: 24px;
}

.vwebinar-toggle-detail-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vwebinar-border);
    color: var(--vwebinar-text);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.vwebinar-toggle-detail-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vwebinar-detail-content {
    list-style: none;
    padding: 14px 0 0 0;
    margin: 0;
    display: none;
}

.vwebinar-detail-wrapper.open .vwebinar-detail-content {
    display: block;
}

.vwebinar-detail-wrapper.open .vwebinar-toggle-detail-btn i {
    transform: rotate(180deg);
}

.vwebinar-detail-content li {
    font-size: 0.88rem;
    color: var(--vwebinar-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vwebinar-detail-content li i {
    color: var(--vwebinar-primary);
}

.vwebinar-buy-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--vwebinar-primary), var(--vwebinar-primary-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.vwebinar-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

.vwebinar-btn-wa {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.vwebinar-btn-wa:hover {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6);
}

/* ==================== FAQ SECTION ==================== */
.vwebinar-faq-sec {
    padding: 80px 0 100px;
    background: rgba(15, 23, 42, 0.4);
}

.vwebinar-faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vwebinar-faq-item {
    background: var(--vwebinar-card-bg);
    border: 1px solid var(--vwebinar-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.vwebinar-faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vwebinar-faq-icon {
    color: var(--vwebinar-primary);
    transition: transform 0.3s ease;
}

.vwebinar-faq-body {
    padding: 0 24px 20px;
    color: var(--vwebinar-text-muted);
    font-size: 0.98rem;
    display: none;
}

.vwebinar-faq-item.active {
    border-color: var(--vwebinar-primary);
}

.vwebinar-faq-item.active .vwebinar-faq-body {
    display: block;
}

.vwebinar-faq-item.active .vwebinar-faq-icon {
    transform: rotate(180deg);
}

/* ==================== MODALS ==================== */
.vwebinar-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.vwebinar-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.vwebinar-modal-card {
    background: #1e293b;
    border: 1px solid var(--vwebinar-border);
    border-radius: var(--vwebinar-radius);
    max-width: 440px;
    width: 100%;
    padding: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.vwebinar-modal-overlay.show .vwebinar-modal-card {
    transform: translateY(0);
}

.vwebinar-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.vwebinar-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vwebinar-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.vwebinar-modal-logo {
    height: 38px;
    margin-bottom: 12px;
}

.vwebinar-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.vwebinar-modal-header p {
    font-size: 0.9rem;
    color: var(--vwebinar-text-muted);
    margin: 0;
}

.vwebinar-field-group {
    margin-bottom: 18px;
}

.vwebinar-field-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.vwebinar-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.vwebinar-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    z-index: 5;
}

.vwebinar-input-wrapper input {
    width: 100%;
    background: #1e293b !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 14px 16px 14px 46px !important;
    border-radius: 10px;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    outline: none;
    transition: all 0.3s ease;
}

.vwebinar-input-wrapper input:focus {
    border-color: #6366f1 !important;
    background: #2d3748 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25) !important;
}

.vwebinar-input-wrapper input::placeholder {
    color: #94a3b8 !important;
    opacity: 0.7 !important;
}

.vwebinar-toggle-pass {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    z-index: 5;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vwebinar-toggle-pass:hover {
    color: #ffffff;
}

.vwebinar-submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--vwebinar-primary), var(--vwebinar-secondary));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.vwebinar-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

.vwebinar-modal-footer {
    text-align: center;
    margin-top: 18px;
}

.vwebinar-link-btn {
    background: none;
    border: none;
    color: #38bdf8;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.vwebinar-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.vwebinar-alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.vwebinar-alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

/* NOTICE INACTIVE MODAL */
.vwebinar-card-notice {
    text-align: center;
}

.vwebinar-notice-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.vwebinar-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    background: #10b981;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    margin-top: 18px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* ==================== DASHBOARD LAYOUT ==================== */
.vwebinar-dash-layout {
    display: flex;
    min-height: 100vh;
}

.vwebinar-dash-sidebar {
    width: 320px;
    background: #0f172a;
    border-right: 1px solid var(--vwebinar-border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    flex-shrink: 0;
}

.vwebinar-dash-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.vwebinar-dash-logo {
    height: 36px;
}

.vwebinar-badge-premium {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.vwebinar-dash-userbox {
    background: #1e293b;
    border: 1px solid var(--vwebinar-border);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.vwebinar-user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vwebinar-primary), var(--vwebinar-secondary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.vwebinar-user-info h4 {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    color: #ffffff;
}

.vwebinar-user-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--vwebinar-text-muted);
}

.vwebinar-dash-progress {
    margin-bottom: 24px;
}

.vwebinar-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.vwebinar-progress-track {
    height: 8px;
    background: #1e293b;
    border-radius: 4px;
    overflow: hidden;
}

.vwebinar-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--vwebinar-primary), var(--vwebinar-secondary));
    transition: width 0.4s ease;
}

.vwebinar-dash-nav {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vwebinar-mod-head {
    width: 100%;
    background: #1e293b;
    border: 1px solid var(--vwebinar-border);
    padding: 12px 16px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vwebinar-dash-mod-group.open .vwebinar-mod-head i {
    transform: rotate(180deg);
}

.vwebinar-mod-lessons {
    list-style: none;
    padding: 8px 0 0 0;
    margin: 0;
    display: none;
}

.vwebinar-dash-mod-group.open .vwebinar-mod-lessons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vwebinar-lesson-btn {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--vwebinar-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.vwebinar-lesson-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.vwebinar-lesson-btn.active {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    font-weight: 600;
}

.vwebinar-lesson-btn .check-icon {
    margin-left: auto;
    display: none;
    color: #10b981;
}

.vwebinar-lesson-btn.completed .check-icon {
    display: inline-block;
}

.vwebinar-dash-sidebar-footer {
    margin-top: 24px;
}

.vwebinar-help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
}

/* MAIN DASHBOARD CONTENT */
.vwebinar-dash-main {
    flex-grow: 1;
    background: #0b0f19;
    display: flex;
    flex-direction: column;
}

.vwebinar-dash-header {
    background: #0f172a;
    border-bottom: 1px solid var(--vwebinar-border);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vwebinar-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vwebinar-sidebar-toggle-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.vwebinar-dash-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.vwebinar-dash-logout {
    color: #f87171;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vwebinar-dash-content-body {
    padding: 32px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.vwebinar-video-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--vwebinar-radius);
    background: #000000;
    box-shadow: var(--vwebinar-shadow);
    border: 1px solid var(--vwebinar-border);
    margin-bottom: 24px;
}

.vwebinar-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vwebinar-video-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.vwebinar-btn-complete {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: all 0.3s;
}

.vwebinar-btn-complete:hover {
    transform: translateY(-2px);
}

.vwebinar-access-tag {
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 600;
}

.vwebinar-info-card {
    background: #1e293b;
    border: 1px solid var(--vwebinar-border);
    border-radius: 14px;
    padding: 24px;
}

.vwebinar-info-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.vwebinar-info-card p {
    margin: 0;
    color: var(--vwebinar-text-muted);
    font-size: 0.95rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .vwebinar-hero-grid,
    .vwebinar-usp-grid,
    .vwebinar-product-grid {
        grid-template-columns: 1fr;
    }
    
    .vwebinar-nav-col {
        display: none;
    }
    
    .vwebinar-dash-sidebar {
        position: fixed;
        left: -320px;
        top: 0;
        bottom: 0;
        z-index: 999;
        transition: left 0.3s ease;
    }
    
    .vwebinar-dash-sidebar.open {
        left: 0;
    }
    
    .vwebinar-sidebar-toggle-btn {
        display: block;
    }
}

/* ==========================================
 * STYLES UNTUK MODAL PILIH DASHBOARD & SWITCH BUTTON
 * ========================================== */
.vwebinar-switch-dash-btn {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #818cf8;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.vwebinar-switch-dash-btn:hover {
    background: var(--vwebinar-primary);
    color: #ffffff;
    border-color: var(--vwebinar-primary);
}

.vwebinar-choice-modal-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 36px 28px;
    max-width: 580px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.vwebinar-modal-overlay.show .vwebinar-choice-modal-content {
    transform: translateY(0);
}

.vwebinar-choice-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.vwebinar-choice-close-btn:hover {
    color: #ffffff;
}

.vwebinar-choice-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.vwebinar-choice-title {
    font-size: 1.45rem;
    margin-bottom: 8px;
    font-weight: 800;
    color: #ffffff;
}

.vwebinar-choice-subtitle {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 26px;
    line-height: 1.5;
}

.vwebinar-choice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .vwebinar-choice-cards {
        grid-template-columns: 1fr;
    }
}

.vwebinar-choice-card {
    background: #0f172a;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 22px 16px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.vwebinar-choice-card:hover {
    border-color: #6366f1;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.25);
}

.choice-card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border-radius: 20px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.choice-card-badge.regular-badge {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}

.vwebinar-choice-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.vwebinar-choice-card p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 18px;
    line-height: 1.4;
    flex-grow: 1;
}

.choice-card-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.choice-card-btn.regular-btn {
    color: #ec4899;
}
