/* ============================================
   WEBINAR REGISTRATION - BENTO GRID DESIGN
   Modern, Clean, Premium UI
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-pink: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #374151 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Spacing */
    --gap: 16px;
    --gap-lg: 24px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-900);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

/* ===== WEBINAR PAGE CONTAINER ===== */
.webinar-page {
    min-height: 100vh;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--gradient-success);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--gap-lg);
    text-align: center;
    animation: slideDown 0.5s ease;
}

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

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

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.announcement-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 20px 0 60px;
    position: relative;
}

/* ===== BENTO GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--gap);
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Form Card - Large */
.bento-form {
    grid-column: span 5;
    grid-row: span 3;
}

/* Title Card */
.bento-title {
    grid-column: span 7;
    grid-row: span 1;
}

/* Info Cards */
.bento-date {
    grid-column: span 3;
}

.bento-time {
    grid-column: span 2;
}

.bento-seats {
    grid-column: span 2;
}

.bento-platform {
    grid-column: span 3;
}

.bento-image {
    grid-column: span 4;
}

/* ===== FORM CARD ===== */
.form-card {
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
}

.form-header {
    background: var(--gradient-success);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.form-body {
    padding: 30px;
    flex: 1;
}

.form-floating-group {
    position: relative;
    margin-bottom: 16px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1rem;
    z-index: 2;
    transition: color var(--transition-fast);
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    transition: all var(--transition-fast);
    background: var(--gray-50);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-input:focus+.input-icon,
.form-floating-group:focus-within .input-icon {
    color: var(--primary);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.form-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.trust-item i {
    color: var(--success);
}

/* ===== TITLE CARD ===== */
.title-card {
    background: var(--gradient-dark);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.title-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.webinar-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.webinar-desc {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== INFO CARDS ===== */
.info-card {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.info-card.gradient-purple {
    background: var(--gradient-purple);
}

.info-card.gradient-blue {
    background: var(--gradient-blue);
}

.info-card.gradient-green {
    background: var(--gradient-green);
}

.info-card.gradient-orange {
    background: var(--gradient-orange);
}

.info-card.gradient-pink {
    background: var(--gradient-pink);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.seats-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    margin-top: auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-full);
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from {
        width: 0;
    }
}

/* ===== IMAGE CARD ===== */
.image-card {
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.webinar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-card:hover .webinar-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    padding-left: 5px;
    box-shadow: var(--shadow-xl);
    transform: scale(0.8);
    transition: transform var(--transition-base);
}

.image-card:hover .play-button {
    transform: scale(1);
}

/* ===== LEARN SECTION ===== */
.learn-section {
    padding: 80px 0;
    background: var(--gray-800);
}

.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-lg);
}

.learn-card {
    background: var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

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

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

.learn-card:hover {
    background: var(--gray-600);
    transform: translateX(10px);
}

.learn-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.learn-content {
    flex: 1;
}

.learn-content p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.learn-icon {
    color: var(--success);
    font-size: 1.25rem;
}

/* ===== HOST SECTION ===== */
.host-section {
    padding: 80px 0;
    background: var(--gray-900);
}

.host-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.host-image-side {
    text-align: center;
}

.host-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.host-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(99, 102, 241, 0.3);
}

.host-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    border: 4px solid var(--gray-900);
}

.host-stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat-box {
    background: var(--gray-800);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 100px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
}

.host-info-side {
    padding-left: 20px;
}

.host-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.host-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.host-title {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.host-experience {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-800);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    color: var(--warning);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.host-bio {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 25px;
}

.host-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-800);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--gray-300);
}

.highlight-item i {
    color: var(--primary);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 80px 0;
    background: var(--gray-800);
}

.benefits-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: var(--gap);
}

.benefit-card {
    background: var(--gray-700);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--gray-600);
}

.benefit-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 20px;
    color: var(--white);
}

.benefit-large .benefit-icon-wrapper {
    width: 90px;
    height: 90px;
    font-size: 2.25rem;
}

.benefit-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-large h3 {
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

.benefit-large p {
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--gray-900);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-action {
    text-align: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary);
    padding: 20px 40px;
    border-radius: var(--radius-full);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    color: var(--primary-dark);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 10%;
}

.deco-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
}

/* ===== SUCCESS MODAL ===== */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.success-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 50px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--white);
}

.success-content h3 {
    color: var(--gray-800);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.success-content p {
    color: var(--gray-500);
    margin-bottom: 25px;
}

.success-details {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}

.success-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.success-note i {
    color: var(--primary);
}

/* ===== FLOATING BUTTON ===== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-success);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-xl), 0 0 30px rgba(16, 185, 129, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
}

.floating-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--white);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(16, 185, 129, 0.5);
}

/* ===== ALERTS ===== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .bento-form {
        grid-column: span 6;
        grid-row: span 1;
    }

    .bento-title {
        grid-column: span 6;
    }

    .bento-date {
        grid-column: span 3;
    }

    .bento-time {
        grid-column: span 3;
    }

    .bento-seats {
        grid-column: span 3;
    }

    .bento-platform {
        grid-column: span 3;
    }

    .bento-image {
        grid-column: span 6;
    }

    .host-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .host-info-side {
        padding-left: 0;
    }

    .host-highlights {
        justify-content: center;
    }

    .benefits-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .webinar-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero-section {
        padding: 15px 0 40px;
    }

    .announcement-bar {
        padding: 10px 15px;
        margin-bottom: 15px;
    }

    .announcement-text {
        font-size: 0.85rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bento-form,
    .bento-title,
    .bento-date,
    .bento-time,
    .bento-seats,
    .bento-platform,
    .bento-image {
        grid-column: span 1;
    }

    .form-header {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-body {
        padding: 20px;
    }

    .title-card {
        padding: 30px 20px;
    }

    .webinar-title {
        font-size: 1.5rem;
    }

    .info-card {
        padding: 20px;
    }

    .learn-section,
    .host-section,
    .benefits-section,
    .cta-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .learn-grid {
        grid-template-columns: 1fr;
    }

    .host-image {
        width: 180px;
        height: 180px;
    }

    .host-name {
        font-size: 1.75rem;
    }

    .host-stats-row {
        flex-wrap: wrap;
    }

    .stat-box {
        min-width: 80px;
        padding: 15px;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .benefits-bento {
        grid-template-columns: 1fr;
    }

    .benefit-large {
        grid-column: span 1;
    }

    .cta-card {
        padding: 40px 25px;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .btn-cta {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .form-input {
        padding: 14px 14px 14px 44px;
    }

    .btn-submit {
        padding: 16px;
        font-size: 1rem;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-item span {
        display: none;
    }

    .learn-card {
        padding: 20px;
    }

    .learn-number {
        font-size: 2rem;
    }

    .host-highlights {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-3 {
    margin-top: 1rem;
}

.me-2 {
    margin-right: 0.5rem;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-800);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--primary);
    color: var(--white);
}