/* ==========================================
   SKILLED WEBINAR
   PREMIUM PURPLE THEME
========================================== */

:root{

    --primary:#7c3aed;
    --primary-dark:#6d28d9;
    --primary-light:#ede9fe;

    --text:#111827;
    --text-light:#6b7280;

    --white:#ffffff;

    --bg:#fafaff;

    --border:#e9d5ff;
}

/* ==========================================
   GENERAL
========================================== */

body{

    background:var(--bg);

    overflow-x:hidden;
}

.container{

    max-width:1200px;

    margin:auto;

    padding:0 20px;
}

/* ==========================================
   HERO
========================================== */

.hero-wrap{

    padding:120px 20px;

    text-align:center;

    background:
        radial-gradient(circle at top right,
        rgba(124,58,237,.15),
        transparent 35%),

        radial-gradient(circle at bottom left,
        rgba(139,92,246,.10),
        transparent 30%);
}

.hero-inner{

    max-width:900px;

    margin:auto;
}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    background:#f3e8ff;

    color:#7c3aed;

    font-size:13px;

    font-weight:700;

    border-radius:999px;

    margin-bottom:25px;

    letter-spacing:.8px;
}

.hero-title{

    font-size:62px;

    font-weight:800;

    line-height:1.1;

    color:#111827;

    margin-bottom:25px;
}

.hero-title span{

    color:#7c3aed;
}

.hero-subtitle{

    max-width:750px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

    color:#6b7280;
}

.hero-actions{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* BUTTONS */

.btn-primary-xl{

    background:#7c3aed;

    color:white;

    padding:16px 30px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-primary-xl:hover{

    background:#6d28d9;

    transform:translateY(-3px);
}

.btn-secondary-xl{

    background:white;

    color:#7c3aed;

    padding:16px 30px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    border:2px solid #e9d5ff;

    transition:.3s;
}

.btn-secondary-xl:hover{

    background:#f3e8ff;

    transform:translateY(-3px);
}

/* ==========================================
   SECTION HEADER
========================================== */

.section-header{

    text-align:center;

    margin-bottom:60px;
}

.section-header h2{

    font-size:42px;

    margin-bottom:12px;

    color:#111827;

    font-weight:800;
}

.section-header p{

    color:#6b7280;

    font-size:18px;
}

/* ==========================================
   WEBINAR TYPES
========================================== */

.webinar-types{

    padding:100px 0;
}

.webinar-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
}

.webinar-card{

    background:white;

    padding:40px;

    border-radius:24px;

    border:1px solid #f3e8ff;

    box-shadow:
    0 20px 40px rgba(124,58,237,.08);

    transition:.35s;
}

.webinar-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(124,58,237,.15);
}

.webinar-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#f3e8ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;
}

.webinar-card h3{

    color:#7c3aed;

    font-size:26px;

    margin-bottom:10px;
}

.webinar-card h4{

    color:#111827;

    margin-bottom:15px;

    font-size:22px;
}

.webinar-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:20px;
}

.webinar-card ul{

    padding-left:20px;
}

.webinar-card li{

    margin-bottom:10px;

    color:#374151;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonial-section{

    padding:100px 0;

    background:#f8f5ff;
}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.testimonial-card{

    background:white;

    padding:35px;

    border-radius:22px;

    border:1px solid #ede9fe;

    transition:.3s;

    box-shadow:
    0 10px 30px rgba(124,58,237,.06);
}

.testimonial-card:hover{

    transform:translateY(-6px);
}

.stars{

    color:#f59e0b;

    font-size:20px;

    margin-bottom:20px;
}

.testimonial-card p{

    color:#4b5563;

    line-height:1.9;

    margin-bottom:25px;

    font-style:italic;
}

.testimonial-card h4{

    color:#111827;

    margin-bottom:5px;
}

.testimonial-card span{

    color:#7c3aed;

    font-size:14px;

    font-weight:600;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:992px){

    .hero-title{

        font-size:48px;
    }

    .webinar-grid{

        grid-template-columns:1fr;
    }

    .testimonial-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .hero-wrap{

        padding:80px 20px;
    }

    .hero-title{

        font-size:36px;
    }

    .hero-subtitle{

        font-size:16px;
    }

    .section-header h2{

        font-size:30px;
    }

    .webinar-card{

        padding:28px;
    }

    .testimonial-card{

        padding:28px;
    }
}