:root {
    --bg-primary: #0A1118;
    --bg-secondary: #131F2D;
    --bg-card: #1A283A;
    --bg-form: #ffffff;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dark: #0F172A;
    --accent-orange: #F5A623;
    --accent-orange-hover: #E0941A;
    --accent-blue: #3B82F6;
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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



h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

/* --- Buttons --- */
.cta-button {
    background-color: var(--accent-orange);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.large-btn {
    width: auto;
    padding: 18px 40px;
    font-size: 1.2rem;
}

.center-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}



/* --- 1. Top Navigation --- */
.top-nav {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    font-size: 0.9rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-right: -10px;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease, z-index 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    object-fit: cover;
    background-color: #E2E8F0;
}

.avatar:hover {
    transform: translateY(-3px) scale(1.15);
    z-index: 10;
}

.trust-text {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #F5A623;
    font-size: 0.9rem;
}

.rating-text {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.85rem;
}

.nav-right {
    display: flex;
    align-items: center;
}

.companies-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.companies-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.company-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-item {
    color: #ffffff;
    font-weight: 700;
    opacity: 0.65;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
    cursor: default;
}

.logo-item:hover {
    opacity: 0.95;
}

.google-logo {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.deloitte-logo {
    font-family: 'Inter', Arial, sans-serif;
    letter-spacing: -0.2px;
}

.deloitte-logo b {
    color: #86bc25;
}

.microsoft-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.microsoft-logo i {
    font-size: 0.8rem;
}

.amazon-logo {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.tata-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* --- 2. Hero Section --- */
.hero {
    padding: 90px 0 45px; /* Reduced padding-bottom from 100px to 45px to pull the countdown bar up */
    background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.12) 0%, transparent 50%), 
                radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.15) 0%, transparent 50%), 
                #070D14;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-form-wrapper {
    animation: fadeInSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.15s;
}

.badges-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.live-badge {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
    display: inline-flex;
    align-items: center;
}

.free-badge {
    background-color: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.25);
    display: inline-flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero .highlight {
    color: var(--accent-orange);
    text-shadow: 0 0 25px rgba(245, 166, 35, 0.15);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #CBD5E1;
    margin-bottom: 40px;
    max-width: 95%;
    line-height: 1.65;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Webinar Details Row */
.webinar-details-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.detail-col {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-icon-yellow {
    font-size: 2.2rem;
    color: #F5A623;
}

.detail-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.detail-label {
    font-size: 0.75rem;
    color: #F5A623;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.detail-subvalue {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.detail-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Features Pill Box */
.hero-features-pill {
    display: inline-flex;
    gap: 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: 8px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.feature-item i {
    color: #F5A623;
    font-size: 1rem;
}

/* Form Card */
.form-card {
    background-color: #111E30;
    border-radius: var(--radius-lg);
    padding: 40px 30px 30px;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.ribbon-wrapper {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 80%;
    text-align: center;
}

.form-ribbon {
    background: #F5A623;
    color: #0B131F;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.3);
    white-space: nowrap;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
    font-size: 0.95rem;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #ffffff;
    color: #0F172A;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.guarantee-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.form-trust-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    opacity: 0.85;
}

.trust-item i {
    color: #ffffff;
    font-size: 0.85rem;
}

.trust-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255,255,255,0.15);
}

/* --- 3. Countdown Timer Bar --- */
.countdown-bar {
    background-color: var(--bg-card);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    animation: fadeInSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.3s;
}



.countdown-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    min-width: 70px;
}

.time-num {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.time-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.colon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-muted);
}

.timer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.urgency-highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

.urgency-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Section Shared Styles --- */
section {
    padding: 80px 0;
}

.section-subtitle {
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* --- 4. Why Attend Now --- */
.why-attend {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 90px 0;
    border-bottom: 1px solid var(--border-color);
}

.why-attend-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: center;
}

.why-attend-image {
    width: 100%;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
}

.why-attend-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.why-attend-content {
    display: flex;
    flex-direction: column;
}

.why-attend-content .section-subtitle {
    color: #64748B;
    margin-bottom: 12px;
}

.why-attend-content h2 {
    color: var(--text-dark);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc-light {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 35px;
}

.why-attend-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.why-attend-benefit-col {
    text-align: center;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-attend-benefit-col:not(:last-child) {
    border-right: 1px solid #E2E8F0;
}

.benefit-icon-dark {
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.why-attend-benefit-col:hover .benefit-icon-dark {
    transform: translateY(-3px) scale(1.08);
    color: var(--accent-orange);
}

.why-attend-benefit-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-attend-benefit-col p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.45;
}

/* --- 3.4. Does This Sound Like You Section --- */
.does-this-sound-like-you {
    background-color: #ffffff;
    padding: 100px 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
}

.does-this-sound-like-you h2 {
    color: var(--text-dark);
}

.does-this-sound-like-you .section-desc {
    color: #475569;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
}

/* Problem Card */
.problem-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 166, 35, 0.25);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.05), 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Problem Icon Circle */
.problem-icon-wrapper {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--accent-orange);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon-wrapper {
    background-color: var(--accent-orange);
    color: var(--bg-primary);
    box-shadow: 0 0 12px rgba(245, 166, 35, 0.3);
    transform: scale(1.05);
}

/* Problem Text */
.problem-text {
    flex-grow: 1;
}

.problem-text p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.55;
    font-weight: 500;
}

/* --- 3.5 & 5. What You'll Learn in This Workshop --- */
.what-you-learn-v2 {
    background-color: var(--bg-primary);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* Header accent */
.header-accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.what-you-learn-v2 .section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.learning-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 40px;
}

/* Card Styling */
.learning-card-v2 {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.learning-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.35);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.08), 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Icon Box */
.card-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(245, 166, 35, 0.08);
    border: 1.5px solid rgba(245, 166, 35, 0.25);
    color: var(--accent-orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.learning-card-v2:hover .card-icon-box {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.4);
    transform: scale(1.05);
}

/* Content Box */
.card-content-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-content-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.card-content-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Bottom Highlight Box (Go Beyond 99) */
.beyond-box-v2 {
    background: linear-gradient(135deg, rgba(20, 32, 48, 0.6) 0%, rgba(10, 17, 24, 0.8) 100%);
    border: 1px solid var(--accent-orange);
    border-radius: var(--radius-md);
    padding: 40px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Add a glowing neon effect behind the box */
.beyond-box-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.beyond-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.beyond-diagram {
    display: block;
    max-width: 100%;
    height: auto;
}

.beyond-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.beyond-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-orange);
    letter-spacing: -0.5px;
}

.beyond-info p {
    font-size: 1rem;
    color: #CBD5E1;
    line-height: 1.6;
}

/* Pills row */
.beyond-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.beyond-pill {
    padding: 6px 14px;
    border: 1px solid rgba(245, 166, 35, 0.4);
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: default;
}

.beyond-pill:hover {
    background-color: rgba(245, 166, 35, 0.08);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

/* --- 6. Meet Your Host Section --- */
.host-section-wrapper {
    background-color: #ffffff;
    padding: 100px 0;
    border-bottom: 1px solid #E2E8F0;
}

.host-section-wrapper h2 {
    color: var(--text-dark);
}

.host-section-wrapper .section-desc {
    color: #475569 !important;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.mentor-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mentor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 166, 35, 0.1);
}

.mentor-image-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 0 35px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mentor-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 10%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(100%) contrast(1.1); /* Black and white by default */
    /* Ensure no absolute positioning overrides */
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.mentor-card:hover .mentor-img {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(245, 166, 35, 0.3);
    filter: grayscale(0%) contrast(1); /* Return to color on hover */
}

.mentor-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #0A1118;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
    white-space: nowrap;
    z-index: 2;
}

.mentor-info {
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mentor-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.mentor-title {
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Ensure credentials list left-aligns even though mentor-info is center-aligned */
.mentor-info .host-credentials-list {
    text-align: left;
}

/* Credentials List inside Host section */
.host-credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.host-credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 8px 12px;
    margin: 0 -12px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.host-credentials-list li:hover {
    background: rgba(255, 255, 255, 0.03);
}

.host-credentials-list li p {
    font-size: 1.02rem;
    color: var(--text-main);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.host-credentials-list li p strong {
    color: #ffffff;
}

.cred-icon-wrap {
    width: 28px;
    height: 28px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px; /* Centers circle nicely with the first line of text */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cred-icon-wrap i {
    color: var(--accent-orange);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.host-credentials-list li:hover .cred-icon-wrap {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 0 12px rgba(245, 166, 35, 0.4);
}

.host-credentials-list li:hover .cred-icon-wrap i {
    color: #0A1118;
    transform: scale(1.15);
}


/* --- 7. What Participants Say Section (Testimonials - Full Width) --- */
.testimonials-section-wrapper {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.testimonials-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 13.333px); /* 3 cards visible on desktop */
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card .quote-icon {
    font-size: 2.2rem;
    color: rgba(245, 166, 35, 0.15);
    margin-bottom: 20px;
    align-self: flex-start;
}

.stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars-row i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.testimonial-card .quote-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-card .author-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    gap: 4px;
}

.testimonial-card .author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}

.testimonial-card .author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Slider Controls & Dots */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.t-arrow {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.t-arrow:hover {
    background: var(--accent-orange);
    color: #0A1118;
    border-color: var(--accent-orange);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.t-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 70%;
}

.t-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.t-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.t-dot.active {
    background: var(--accent-orange);
    transform: scale(1.25);
}

/* Animations Scroll Trigger Keyframes */
.anim-fade-up,
.anim-slide-left,
.anim-slide-right {
    opacity: 0;
    will-change: transform, opacity;
}

.anim-fade-up.animated {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-slide-left.animated {
    animation: slideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-slide-right.animated {
    animation: slideRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- 8. Bonuses (V2 Premium) --- */
.bonuses-v2 {
    background-color: #ffffff;
    padding: 100px 0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.bonuses-v2 h2 {
    color: var(--text-dark);
}

.bonuses-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, rgba(15, 23, 42, 0) 70%);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

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

.bonus-notice-text-v2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F87171;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 15px auto 0;
    background: rgba(239, 68, 68, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.bonus-cards-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bonus-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bonus-card-v2:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.1);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 1) 100%);
}

.bonus-icon-v2 {
    width: 65px;
    height: 65px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 1px solid rgba(245, 166, 35, 0.2);
    transition: all 0.4s ease;
}

.bonus-card-v2:hover .bonus-icon-v2 {
    background: var(--accent-orange);
    color: var(--bg-primary);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}

.bonus-content-v2 {
    flex-grow: 1;
    text-align: left;
}

.bonus-label-v2 {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.bonus-content-v2 p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0;
}

.bonus-value-card-v2 {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.02) 100%);
    border: 1px solid rgba(245, 166, 35, 0.3);
    padding: 35px 40px;
    border-radius: var(--radius-md);
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.05);
    position: relative;
    overflow: hidden;
}

.bonus-value-card-v2::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.value-icon-v2 {
    color: var(--accent-orange);
    font-size: 3.5rem;
    animation: pulseGift 2s infinite;
}

.value-text-v2 {
    text-align: left;
}

.value-text-v2 p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.value-strike {
    text-decoration: line-through;
    color: #94A3B8;
    margin-left: 8px;
}

.value-amount-v2 {
    color: var(--accent-orange) !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin: 0 !important;
    text-transform: none !important;
}

/* --- 9. FAQ Section --- */
.faq {
    background-color: #ffffff;
    color: var(--text-dark);
    border-bottom: 1px solid #E2E8F0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748B;
}

/* --- 10. Final CTA --- */
.final-cta {
    background-color: var(--bg-secondary);
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.trophy-icon {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.final-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.final-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.final-features i {
    color: var(--accent-orange);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* --- 10.5. Standard Footer --- */
.footer {
    background-color: #070D14;
    color: var(--text-muted);
    padding: 60px 0 120px; /* High bottom padding so the sticky footer doesn't obscure content */
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

.disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.6;
    opacity: 0.65;
}



/* --- 11. Sticky Footer --- */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-top: 2px solid var(--accent-orange);
    padding: 15px 0;
    z-index: 100;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-footer.visible {
    transform: translateY(0);
}

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

.sticky-text {
    font-weight: bold;
    font-size: 1.1rem;
}

.sticky-btn {
    width: auto;
    padding: 12px 30px;
}

.sticky-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.sticky-timer .time-block {
    flex-direction: row;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.2);
}

.sticky-timer .label {
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .beyond-box-v2 { grid-template-columns: 180px 1fr; gap: 30px; padding: 30px; }
    .host-container-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .host-image-block {
        max-width: 340px;
    }
    .host-info-block {
        align-items: center;
    }
    .host-credentials-list {
        align-items: flex-start;
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
        padding-left: 12px; /* Visual balance */
    }
    .host-title-tags {
        justify-content: center;
    }
    .testimonial-card { flex: 0 0 calc(50% - 10px); }
    .bonus-cards-v2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .mentors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-attend-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        background: radial-gradient(circle at 50% 20%, rgba(29, 78, 216, 0.1) 0%, transparent 60%), #070D14;
        padding: 60px 0 80px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .hero h1 {
        font-size: 2.3rem;
        letter-spacing: -1px;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .webinar-details-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    .detail-col {
        width: 100%;
    }
    .detail-divider {
        display: none;
    }
    .hero-features-pill {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        padding: 15px;
    }
    .countdown-container { justify-content: center; text-align: center; }
    .timer-right { align-items: center; margin-top: 15px; }
    .why-attend-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .why-attend-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .why-attend-content {
        text-align: center;
    }
    .why-attend-benefits {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 25px;
    }
    .why-attend-benefit-col {
        padding: 0 0 20px;
    }
    .why-attend-benefit-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }
    .problem-grid { grid-template-columns: 1fr; gap: 20px; }
    .learning-grid-v2 { grid-template-columns: 1fr; gap: 20px; }
    .beyond-box-v2 { grid-template-columns: 1fr; gap: 30px; text-align: center; padding: 30px 20px; }
    .beyond-pills { justify-content: center; }
    .mentors-grid { grid-template-columns: 1fr; gap: 30px; }
    .host-image-block { max-width: 300px; }
    .testimonial-card { flex: 0 0 100%; }
    .bonus-cards-v2 { grid-template-columns: 1fr; }
    .bonus-value-card-v2 { flex-direction: column; text-align: center; gap: 15px; padding: 25px; }
    .faq-grid { grid-template-columns: 1fr; }
    .final-cta-container { grid-template-columns: 1fr; }
    .input-row { grid-template-columns: 1fr; }
    
    .sticky-footer {
        padding: 10px 0;
    }
    .sticky-container {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        width: 100%;
        padding: 0 10px;
    }
    .sticky-text, .sticky-timer {
        display: none;
    }
    .sticky-btn {
        width: 100%;
        font-size: 1rem;
        padding: 10px 20px;
        text-align: center;
    }
    
    /* Footer responsiveness */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-bottom {
        text-align: center;
    }

    
    .nav-container { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
        justify-content: center; 
    }
    .nav-left, .nav-center, .nav-right {
        justify-content: center;
        width: 100%;
    }
    .companies-info {
        align-items: center;
    }
    .company-logos {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .host-floating-badge {
        right: 0px;
        bottom: -10px;
        padding: 8px 15px;
    }
    .host-floating-badge i {
        font-size: 1.3rem;
    }
    .host-floating-badge strong {
        font-size: 0.8rem;
    }
    .host-floating-badge span {
        font-size: 0.65rem;
    }
}
