/* Webinar Series V2 - IMCAS Style Professional Design */

/* ── Variables ── */
:root {
    --primary-color: #5B2378;
    --primary-dark: #3D1555;
    --primary-light: #7B3FA8;
    --primary-gradient: linear-gradient(135deg, #5B2378 0%, #7B3FA8 100%);
    --accent-blue: #1E3A5F;
    --accent-gold: #C9A962;
    --gold-gradient: linear-gradient(135deg, #C9A962 0%, #D4AF37 100%);
    --white: #ffffff;
    --light-gray: #F5F6F8;
    --medium-gray: #E8E9EB;
    --text-dark: #1A1A2E;
    --text-primary: #2D2D44;
    --text-secondary: #5B5B72;
    --text-muted: #8B8B9E;
    --border-color: #D8D8E0;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 50px rgba(91, 35, 120, 0.15);
}

/* ── Font Helpers ── */
.fonseca {
    font-family: 'Fonseca', sans-serif;
}

.red-hat {
    font-family: 'Red Hat Display', sans-serif;
}

.tenor {
    font-family: 'Tenor Sans', sans-serif;
}

.work-sans {
    font-family: 'Work Sans', sans-serif;
}

/* ── Buttons ── */
.btn-goldenrod {
    background: linear-gradient(146.12deg, #A17704 12.72%, #E0D0A3 77.89%, #A17704 125.83%, #CCB77E 163.04%);
    color: white;
    font-weight: bold;
}

.btn-goldenrod:hover {
    color: white !important;
}

/* ── Section Title ── */
.section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

/* ── Hero Section ── */
.webinar-hero-v2 {
    background: #0a0214;
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.webinar-hero-v2 .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    z-index: 10;
}

/* Full Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/web/images/webinar-series/home-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient Overlay - Dark left, purple glow right */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(10, 2, 20, 0.92) 0%,
            rgba(20, 5, 40, 0.85) 15%,
            rgba(50, 20, 90, 0.65) 35%,
            rgba(80, 40, 140, 0.40) 50%,
            rgba(100, 60, 180, 0.20) 65%,
            rgba(120, 80, 200, 0.10) 80%,
            rgba(120, 80, 200, 0.05) 100%);
    z-index: 1;
}

/* Additional Overlay for depth - purple glow effect */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 60% 30%, rgba(120, 60, 200, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, rgba(100, 50, 180, 0.25) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

/* Decorative circles - world map network effect */
.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 140, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation: floatCircle 20s infinite ease-in-out;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: floatCircle 15s infinite ease-in-out reverse;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 20%;
    animation: floatCircle 12s infinite ease-in-out 3s;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 0.5;
    }
}

/* Hero Brand - Text Logo */
.hero-brand {
    margin-bottom: 40px;
}

.hero-brand-logo img {
    height: 63px;
}


@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.webinar-hero-v2 h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.webinar-hero-v2 h1 .first-title {
    color: #E2CEF0;
}

.webinar-hero-v2 h1 .second-title {
    color: #E2CEAD;
}

/* Description text in the hero */
.hero-description {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 45px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.webinar-hero-v2 .hero-description strong {
    color: #ffffff;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-register-btn {
    letter-spacing: 2.5px;
    padding: 16px 52px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #A57927 0%, #A57927 25%, #A57927 50%, #D4A574 75%, #A57927 100%);
    box-shadow: 0px 6.07px 7.58px 0px rgba(13, 68, 57, 0.55);
    color: #E3E2DE;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
}

.hero-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Diagonal Corner Ribbon - High z-index to show above navbar */
.hero-corner-ribbon {
    position: absolute;
    top: 70px;
    right: 0;
    width: 240px;
    height: 240px;
    overflow: hidden;
    z-index: 9999;
    pointer-events: none;
}

.hero-corner-ribbon>span {
    position: absolute;
    top: 55px;
    right: -52px;
    width: 230px;
    border: 1.11px solid transparent;
    background: linear-gradient(90.00deg, #AB7927 0%, #FEDB6B 53%, #DEB754 56%, #B18736 59%, #966923 62%, #8C5E1C 64%, #AE7A2F 70%, #D69C47 79%, #C28C3F 80%, #6F4A1C 86%, #4F300F 89%, #7A5018 93%, #8C5E1C 95%, #D69C47 100%);
    box-shadow: 0px 8.87px 11.08px 0px rgba(13, 68, 57, 0.25);
    color: #ffffff;
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    padding: 12px 0;
    transform: rotate(45deg);
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ── Rundown Section ── */
#rundown-section {
    background: #fff;
    padding: 70px 0;
}

#rundown-section .section-title {
    color: #491D62;
}

/* ── Webinar Event Cards ── */
.ws-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.ws-event-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(73, 29, 98, 0.22);
    transition: transform .25s, box-shadow .25s;
}

.ws-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(73, 29, 98, 0.28);
}

.ws-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ws-card-past .ws-card-bg {
    filter: grayscale(0.65) brightness(0.65);
}

.ws-card-past-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    z-index: 1;
}

.ws-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    min-height: 340px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.65) 100%);
}

.ws-card-status {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
}

.ws-status-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 162, 0, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.ws-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: rd-pulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes rd-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.7);
    }
}

.ws-status-past {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.ws-card-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 12px;
}

.ws-card-date {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.80rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.ws-card-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.90rem;
    margin-bottom: 8px;
}

.ws-card-title {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.ws-card-price {
    display: block;
    background: transparent;
    color: #fff;
    font-size: 0.88rem;
    padding: 0;
    margin-bottom: 10px;
}

.ws-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    align-items: center;
}

.ws-btn-register {
    background: linear-gradient(135deg, #A17704, #E0D0A3, #A17704);
    color: #1a0a2e !important;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ws-btn-register:hover {
    opacity: 0.9;
    color: #1a0a2e !important;
    text-decoration: none;
}

.ws-btn-zoom {
    background: #2D8CFF;
    color: #fff !important;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ws-btn-zoom:hover {
    background: #1a7af0;
    color: #fff !important;
    text-decoration: none;
}

.ws-btn-summary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    font-size: 0.73rem;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ws-btn-summary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff !important;
    text-decoration: none;
}

.ws-btn-program {
    background: transparent;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background .2s;
}

.ws-btn-program:hover,
.ws-btn-program.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
}

.ws-badge-registered {
    display: inline-flex;
    align-items: center;
    background: rgba(40, 167, 69, 0.85);
    color: #fff;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.ws-card-img-top {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}

.ws-card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ws-event-card:has(.ws-card-img-top) .ws-card-content {
    min-height: 180px;
}

/* ── Program Panel ── */
.ws-program-panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 32px rgba(73, 29, 98, 0.13);
    overflow: hidden;
    margin-bottom: 24px;
    margin-top: 14px;
    border: 1px solid #e0daea;
    animation: ws-panel-in .2s ease-out;
}

@keyframes ws-panel-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

.ws-program-header {
    background: linear-gradient(90deg, #491D62, #7a3a9a);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ws-program-panel-title {
    color: #E0D0A3;
    font-size: 1.1rem;
    margin: 0 0 3px;
}

.ws-program-panel-date {
    color: rgba(224, 208, 163, 0.75);
    font-size: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.ws-program-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
}

.ws-program-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #E0D0A3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}

.ws-program-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.ws-program-session {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #eee;
    align-items: stretch;
}

.ws-program-session:last-child {
    border-bottom: none;
}

.ws-program-session.ws-session-past {
    opacity: 0.55;
    background: #f8f8f8;
}

.ws-program-session.ws-session-live {
    background: linear-gradient(90deg, #fff8f0, #fff);
    border-left: 4px solid #e8a200;
}

.ws-program-detail {
    padding: 18px 20px;
    flex: 1;
    min-width: 0;
    background: #fff;
}

.ws-program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.ws-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f6f0fb;
    color: #6a3486;
    font-size: 0.8rem;
    font-weight: 700;
}

.ws-session-title {
    font-size: 1.18rem;
    color: #1a0a2e;
    line-height: 1.35;
    margin-bottom: 8px;
}

.ws-session-chairman {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    padding: 9px 12px;
    background: #faf7fd;
    border: 1px solid #efe5f8;
    border-radius: 10px;
}

.ws-session-chairman i {
    color: #491D62;
}

.ws-session-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 10px;
}

.ws-session-topics {
    border-left: 3px solid #e8e0f0;
    margin-left: 4px;
    padding-left: 14px;
    margin-top: 12px;
}

.ws-topic-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
}

.ws-topic-border {
    border-bottom: 1px dashed #eee;
}

.ws-topic-body {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fcfbfe;
    border: 1px solid #f0ebf6;
}

.ws-topic-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ws-topic-speaker {
    flex-shrink: 0;
    width: 300px;
    max-width: 100%;
}

.ws-topic-speaker>div {
    width: 100%;
}

.ws-topic-text {
    font-size: 0.98rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 4px;
}

.ws-topic-text-inline {
    margin-bottom: 0;
    flex: 1;
    padding-top: 6px;
}

.ws-panel-empty-state {
    padding: 32px;
    text-align: center;
    background: linear-gradient(180deg, #fcfaff 0%, #fff 100%);
}

.ws-program-empty {
    color: #bbb;
    font-size: 0.9rem;
}

/* ── PDF Report Modal ── */
#ws-pdf-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

#ws-pdf-modal-overlay.open {
    display: flex;
}

#ws-pdf-modal {
    background: #1e1340;
    border: 2px solid #4b2fa0;
    border-radius: 12px;
    padding: 28px 28px 22px;
    width: 340px;
    max-width: 92vw;
    color: #fff;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

#ws-pdf-modal h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #e0d0ff;
}

#ws-pdf-modal p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
}

#ws-pdf-modal .modal-icon {
    color: #a78bfa;
    margin-right: 6px;
}

.ws-pdf-lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.ws-pdf-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 10px;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}

.ws-pdf-lang-btn:hover {
    background: rgba(160, 120, 255, 0.22);
    border-color: #7b4fff;
    color: #fff;
    text-decoration: none;
}

.ws-pdf-modal-cancel {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    padding: 7px;
    cursor: pointer;
    transition: background 0.2s;
}

.ws-pdf-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

/* ── Why i-SWAM Section ── */
.why-iswam-section {
    padding: 100px 0;
    background-image: url('/web/images/webinar-series/section-background.webp');
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.why-iswam-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(120, 80, 200, 0.3) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.why-iswam-section h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.why-badge {
    display: inline-block;
    background: #E0BE77;
    color: #000;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 1rem;
    margin: 20px 0 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.why-intro-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.challenges-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.challenge-card-why {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 24px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform .3s, box-shadow .3s;
}

.challenge-card-why:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.challenge-card-why img {
    height: 70px !important;
    margin-bottom: 24px;
}

.challenge-card-why p {
    font-size: 0.9rem;
    color: #2D2D44;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.challenge-card-why p strong {
    color: #4B1D7F;
    font-weight: 600;
}

/* ── Schedule Section ── */
.schedule-register-wrap {
    text-align: center;
    margin-top: 36px;
}

/* ── Features Section ── */
.features-section-v2 {
    padding: 100px 0;
    background: #ffffff;
}

.features-section-v2 .section-title {
    color: #4B1D7F;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.features-section-v2 .section-title span {
    font-weight: 700;
}


.features-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.feature-card-v2 {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: none;
}

.feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(75, 29, 127, 0.15);
}

.feature-icon-v2 img {
    height: 75px;
    margin-bottom: 13px;
}

.feature-card-v2 h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2D2D44;
    margin-bottom: 15px;
}

.feature-card-v2 p {
    font-family: 'Work Sans', sans-serif;
    color: #555566;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-card-v2 ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.feature-card-v2 ul li {
    color: #555566;
    font-size: 0.92rem;
    line-height: 1.8;
}

.feature-card-v2 ul+p {
    font-size: 0.88rem;
    margin-top: 10px;
}

.feature-card-v2 ul:last-child {
    margin: 0;
}

.feature-card-v2 p strong {
    color: #4B1D7F;
    font-weight: 700;
}

/* ── Audience Section ── */
.audience-section-v2 {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: visible;
}

.audience-section-v2 .section-title {
    color: #4B1D7F;
    font-size: 2.5rem;
    font-weight: 700;
}

.audience-section-v2 .audience-intro {
    color: #555;
    margin-top: 8px;
    font-size: 1.05rem;
}

.audience-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 8px;
    overflow: visible;
}

.audience-card-v2 {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    overflow: visible;
    position: relative;
    width: 100%;
}

.audience-card-v2:hover {
    transform: translateY(-8px);
}

.audience-image-container {
    width: 100%;
    height: 340px;
    overflow: visible;
    position: relative;
    border-radius: 38px 38px 0 0;
}

.audience-image-container::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4B1D7F 0%, #5A2895 100%);
    z-index: 1;
    border-radius: 38px 38px 0 0;
    height: 300px;
}

.audience-image-wrap {
    position: absolute;
    z-index: 2;
    top: -30px;
    left: 0;
    width: 100%;
    height: calc(100% + 30px);
    overflow: hidden;
}

.audience-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
}

.audience-card-v2:hover .audience-image-container img {
    transform: scale(1.08);
}

.audience-card-content {
    padding: 0;
    background: linear-gradient(146.12deg, #A17704 12.72%, #E0D0A3 77.89%, #A17704 125.83%, #CCB77E 163.04%);
    position: relative;
    z-index: 3;
}

.audience-card-v2 h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    color: #0a0214;
    font-weight: 600;
    margin: 0;
    padding: 16px 20px;
    text-align: center;
}

.audience-cta-text {
    font-size: 1.05rem;
    color: #000;
    margin-top: 40px;
    line-height: 1.7;
}

.audience-cta-text strong {
    font-weight: 700;
}

/* ── Movement Section ── */
.movement-section-v2 {
    padding: 80px 0 60px;
    background-image: url('/web/images/webinar-series/section-bottom-background.webp');
    background-position: center;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.movement-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(120, 80, 200, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.movement-content-v2 {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.movement-section-v2 h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.movement-section-v2 h2 span {
    font-weight: 700;
}

.movement-section-v2 p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
}

.movement-section-v2 p strong {
    color: #fff;
    font-weight: 700;
}

.movement-content-v2 .separator {
    width: 1.5px;
    height: 50px;
    background-color: #fff;
    margin: 20px auto;
}

.movement-tagline {
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.movement-words-v2 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.movement-word-v2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    animation: wordFadeIn 0.8s ease both;
}

.movement-word-v2:nth-child(1) {
    animation-delay: 0.1s;
}

.movement-word-v2:nth-child(2) {
    animation-delay: 0.2s;
}

.movement-word-v2:nth-child(3) {
    animation-delay: 0.3s;
}

.movement-word-v2:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.movement-word-v2:not(:last-child)::after {
    content: '.';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Movement social footer */
.movement-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.movement-social-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #A57927 0%, #A57927 25%, #A57927 50%, #D4A574 75%, #A57927 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.movement-social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.45);
    color: #fff;
}

.movement-social-item i {
    font-size: 1.1rem;
}

/* ── Animations ── */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* ── Responsive ── */
@media (max-width: 992px) {
    .webinar-hero-v2 h1 {
        font-size: 2.8rem;
    }

    .webinar-hero-v2 .hero-description {
        font-size: 0.95rem !important;
    }

    .hero-decorative-circle {
        display: none;
    }

    .features-grid-v2 {
        justify-content: center;
    }

    .feature-card-v2 {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .audience-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .audience-image-container {
        height: 320px;
    }

    .audience-image-wrap {
        top: -25px;
        height: calc(100% + 25px);
    }

    .audience-image-container::before {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .webinar-hero-v2 {
        padding: 100px 15px 60px;
        min-height: auto;
    }

    .webinar-hero-v2 h1 {
        font-size: 2rem;
    }

    .hero-brand {
        margin-bottom: 25px;
    }

    .hero-brand-logo img {
        height: 45px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-register-btn {
        width: 100%;
        text-align: center;
    }

    .hero-corner-ribbon {
        width: 120px;
        height: 120px;
        top: 60px;
    }

    .hero-corner-ribbon>span {
        top: 22px;
        right: -28px;
        width: 130px;
        font-size: 0.55rem;
        padding: 9px 0;
        letter-spacing: 1.5px;
    }

    .why-iswam-section {
        padding: 60px 15px;
    }

    .why-iswam-section h2 {
        font-size: 1.8rem;
    }

    .why-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
        margin: 20px 0 30px;
    }

    .why-intro-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .challenges-grid-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .challenge-card-why {
        padding: 25px 20px;
    }

    .challenge-card-why img {
        height: 55px !important;
        margin-bottom: 18px;
    }

    .challenge-card-why p {
        font-size: 0.85rem;
    }

    .features-section-v2 {
        padding: 60px 15px;
    }

    .features-section-v2 .section-title {
        font-size: 1.8rem;
    }

    .feature-card-v2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .audience-section-v2 {
        padding: 60px 15px;
    }

    .audience-section-v2 .section-title {
        font-size: 1.8rem;
    }

    .audience-grid-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .audience-image-container {
        height: 300px;
    }

    .audience-image-wrap {
        top: -20px;
        height: calc(100% + 20px);
    }

    .movement-section-v2 {
        padding: 60px 15px 40px;
    }

    .movement-section-v2 h2 {
        font-size: 2rem;
    }

    .movement-words-v2 {
        gap: 15px;
    }

    .movement-word-v2 {
        font-size: 1rem;
    }

    .movement-word-v2:not(:last-child)::after {
        display: none;
    }

    .movement-social {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .movement-social-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .ws-event-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ws-card-content {
        min-height: 260px;
        padding: 14px;
    }

    .ws-card-title {
        font-size: 1rem;
    }

    .ws-program-header {
        padding: 14px 16px;
        align-items: flex-start;
    }

    .ws-program-session {
        flex-direction: column;
    }

    .ws-program-detail {
        padding: 16px;
    }

    .ws-program-panel-date {
        gap: 6px;
    }

    .ws-topic-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ws-topic-speaker {
        width: 100%;
    }

    .ws-topic-text-inline {
        width: 100%;
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .ws-event-grid {
        grid-template-columns: 1fr;
    }

    .webinar-hero-v2 h1 {
        font-size: 1.8rem;
    }

    .hero-brand-logo img {
        height: 40px;
    }

    .why-iswam-section h2 {
        font-size: 1.5rem;
    }

    .features-section-v2 .section-title {
        font-size: 1.5rem;
    }

    .feature-card-v2 {
        padding: 30px 25px;
    }

    .audience-image-container {
        height: 260px;
    }
}