:root {
    --primary: #6B5CE7;
    --primary-dark: #5648c7;
    --accent: #E85D3B;
    --accent-dark: #d14a2a;
    --dark: #2D3748;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #4A5568;
    --text-light: #718096;
    --border: #E2E8F0;
    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

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

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

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

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-menu a:hover { color: var(--primary); }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 93, 59, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    background: var(--white);
    padding-top: 70px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 50% 50%;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1.5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f0edff, #e8f4ff);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1.5px solid rgba(107, 92, 231, 0.25);
    width: fit-content;
}
.hero-badge::before {
    content: '🎓';
    font-size: 1rem;
}
.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark);
}
.hero h1 span { color: var(--primary); }
.hero-subheadline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-image {
    position: relative;
    overflow: hidden;
    background: #1a1a2e;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, #8B7CF7 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    left: -80px; top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 180px; height: 180px;
    border: 3px solid rgba(255,255,255,0.2);
    background: transparent;
}
.stats::after {
    content: '';
    position: absolute;
    right: -60px; top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    width: 150px; height: 150px;
    border: 3px solid rgba(255,255,255,0.15);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.stats .container { position: relative; z-index: 1; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}
.stat-item p {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WHAT YOU'LL LEARN ===== */
.learn {
    padding: 5rem 0;
    background: var(--white);
}
.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.learn-card {
    background: var(--light);
    border-radius: 16px;
    padding: 2rem;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
}
.learn-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(107,92,231,0.1);
}
.learn-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), #8B7CF7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.learn-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.learn-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== AGENDA ===== */
.agenda {
    padding: 5rem 0;
    background: #f7f6ff;
}
.agenda-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.agenda-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.agenda-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid var(--border);
    transition: border-color 0.3s;
}
.agenda-item:hover { border-color: var(--primary); }
.agenda-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), #8B7CF7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
}
.agenda-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
.agenda-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}
.agenda-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107,92,231,0.15);
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.agenda-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===== DELIVERABLES ===== */
.deliverables {
    padding: 5rem 0;
    background: var(--white);
}
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.deliverable-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
}
.deliverable-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(232,93,59,0.1);
    transform: translateY(-4px);
}
.deliverable-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}
.deliverable-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.deliverable-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== INSTRUCTOR ===== */
.instructor {
    padding: 5rem 0;
    background: var(--light);
}
.instructor-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}
.instructor-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 30px rgba(107,92,231,0.2);
    flex-shrink: 0;
}
.instructor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.instructor-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.instructor-info p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
}
.instructor-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.instructor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--border);
    color: var(--text);
    transition: all 0.3s;
}
.instructor-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0edff;
}

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #8B7CF7 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    left: -50px; top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.1);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.cta-section::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='2'%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Ccircle cx='150' cy='40' r='10'/%3E%3Ccircle cx='250' cy='60' r='9'/%3E%3Ccircle cx='350' cy='80' r='8'/%3E%3Ccircle cx='80' cy='150' r='7'/%3E%3Ccircle cx='180' cy='140' r='6'/%3E%3Ccircle cx='280' cy='160' r='10'/%3E%3Cpath d='M50 50 L150 40 L250 60 L350 80'/%3E%3Cpath d='M80 150 L180 140 L280 160'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.6;
}
.cta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-section-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.cta-section-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 500px;
}
.cta-section .btn-primary {
    flex-shrink: 0;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== REGISTRATION FORM ===== */
.registration {
    padding: 5rem 0;
    background: var(--white);
}
.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.form-subtitle {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Collapse extra top padding injected by getcourse widget */
.form-wrapper > div {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.form-wrapper iframe {
    margin-top: 0 !important;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1e21;
    padding: 3rem 0 1.5rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
}
.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .learn-grid { grid-template-columns: repeat(2, 1fr); }
    .agenda-inner { grid-template-columns: 1fr; gap: 2rem; }
    .agenda-image { order: -1; }
    .agenda-image img { height: auto; }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active { display: flex; }
    .nav-toggle { display: block; }
    .hero {
        padding-top: 60px;
        min-height: auto;
        grid-template-columns: 1fr;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 3rem 1.5rem;
        order: 1;
    }
    .hero-image { min-height: 280px; order: 2; }
    .hero-buttons { justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .learn-grid { grid-template-columns: 1fr; }
    .deliverables-grid { grid-template-columns: 1fr; }
    .instructor-inner { grid-template-columns: 1fr; text-align: center; }
    .instructor-photo { margin: 0 auto; }
    .instructor-links { justify-content: center; }
    .cta-section .container { flex-direction: column; gap: 2rem; text-align: center; }
    .cta-section-content p { margin: 0 auto; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 576px) {
    .container { padding: 0 1rem; }
    .section-header h2 { font-size: 1.5rem; }
}

