/* ========================================
   BRAIN EVENT - Modern VSL Landing Page
   Design 2025-2026 Trends
   Colors: Turquoise (#06B6D4) & White
   ======================================== */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #06B6D4;
    --primary-dark: #0891B2;
    --primary-light: #22D3EE;
    --primary-pale: rgba(6, 182, 212, 0.1);
    --secondary: #0F172A;
    --footer-bg: #02434b;
    --text-dark: #1E293B;
    --text-medium: #475569;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gradient: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing - Reduced */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0 var(--space-3xl);
    }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: var(--footer-bg);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-brand {
    color: var(--white);
}

.navbar.scrolled .nav-links a {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-light);
}

.navbar.scrolled .nav-badge,
.navbar.scrolled .timer-mini {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-nav {
    background: var(--white);
    color: var(--footer-bg);
    border-color: var(--white);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    transition: opacity var(--transition-base);
}

.logo-white {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
}

.logo-default {
    opacity: 1;
}

.navbar.scrolled .logo-white {
    opacity: 1;
    pointer-events: auto;
}

.navbar.scrolled .logo-default {
    opacity: 0;
    pointer-events: none;
}

.logo-brain {
    font-size: 2rem;
    line-height: 1;
}

.logo-text .dot {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-badge {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.timer-mini {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-medium);
}

.btn-nav {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .nav-badge,
    .timer-mini {
        display: flex;
    }
}

@media (max-width: 767px) {
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-brain {
        font-size: 1.75rem;
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-pale);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

.btn-small {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(6, 182, 212, 0);
    }
}

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

.hero {
    min-height: 85vh;
    height: auto;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    margin-top: calc(90px + var(--space-sm) + var(--space-sm));
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: visible;
    background: var(--bg-gradient);
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    isolation: isolate;
    z-index: 1;
}

/* Three.js Canvas */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none !important;
    touch-action: none;
    object-fit: cover;
    object-position: center;
}

.hero > .container {
    position: relative;
    z-index: 10;
    width: 100%;
    pointer-events: auto;
}

.hero-content,
.hero-content * {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    transform: scale(1);
    width: 100%;
    padding: 0 var(--space-md);
}

.hero-content .hero-badge {
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
}

.hero-content .hero-title {
    text-align: center;
}

.hero-content .hero-subtitle {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.375rem var(--space-md);
    background: var(--white);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

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

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-top: 0;
    padding-top: var(--space-md);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

/* VSL Container */
.vsl-container {
    margin: var(--space-md) 0;
}

.video-wrapper {
    width: 85vw;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    padding: var(--space-2xl);
}

.video-icon {
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.video-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.video-subtext {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-text span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Hero Images */
.hero-images {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

@media (min-width: 1024px) {
    .hero-images {
        display: grid;
    }
}

.hero-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.hero-image-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
}

.image-placeholder p {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

/* Tablet - Medium screens */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        height: auto;
        max-height: none;
        padding-bottom: var(--space-lg);
    }
    
    .hero-content {
        transform: scale(1);
        max-width: 95%;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
        margin-bottom: var(--space-sm);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9375rem, 2vw, 1.125rem);
        margin-bottom: var(--space-md);
    }
    
    .vsl-container {
        margin: var(--space-md) 0;
    }
    
    .video-wrapper {
        width: 85vw;
        max-width: 95%;
    }
}

/* Mobile - Small screens */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        height: auto;
        max-height: none;
        padding-top: 70px;
        padding-bottom: var(--space-md);
    }
    
    .hero-content {
        padding: var(--space-sm) var(--space-md);
        transform: scale(1);
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: var(--space-sm);
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-bottom: var(--space-xs);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        margin-bottom: var(--space-sm);
        line-height: 1.4;
    }
    
    .vsl-container {
        margin: var(--space-sm) 0;
    }
    
    .video-wrapper {
        width: 95vw;
        max-width: 100%;
    }
    
    .video-placeholder {
        padding: var(--space-md);
    }
    
    .video-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
        margin-top: var(--space-sm);
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9375rem;
    }
    
    .hero-content .hero-badge {
        justify-content: center;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
        padding-bottom: var(--space-sm);
    }
    
    .hero-content {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .hero-title {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: var(--space-xs);
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
        margin-bottom: 0.5rem;
    }
    
    .vsl-container {
        margin: var(--space-xs) 0;
    }
    
    .video-wrapper {
        width: 98vw;
    }
    
    .video-placeholder {
        padding: var(--space-sm);
    }
    
    .video-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .hero-cta {
        margin-top: var(--space-xs);
    }
    
    .hero-cta .btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.875rem;
    }
}

/* Media Queries for Short Height Displays */
@media (max-height: 800px) {
    .hero {
        min-height: auto;
        height: auto;
        max-height: none;
        padding-top: 70px;
        padding-bottom: var(--space-md);
    }
    
    .hero-content {
        padding: var(--space-xs) var(--space-md);
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: var(--space-md);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: var(--space-xs);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 2vw, 1rem);
        margin-bottom: var(--space-sm);
        line-height: 1.4;
    }
    
    .vsl-container {
        margin: var(--space-sm) 0;
    }
    
    .video-wrapper {
        width: 75vw;
    }
    
    .hero-cta {
        gap: var(--space-sm);
        margin-top: var(--space-sm);
    }
    
    .hero-cta .btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.9375rem;
    }
    
    section {
        padding: var(--space-xl) 0;
    }
    
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }
}

@media (max-height: 700px) {
    .hero {
        padding-top: 65px;
        padding-bottom: var(--space-sm);
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
        margin-bottom: var(--space-sm);
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
        margin-bottom: var(--space-xs);
        line-height: 1.3;
    }
    
    .vsl-container {
        margin: var(--space-xs) 0;
    }
    
    .video-wrapper {
        width: 70vw;
    }
    
    .video-placeholder {
        padding: var(--space-sm);
    }
    
    .video-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .hero-cta {
        gap: var(--space-xs);
        margin-top: var(--space-xs);
    }
    
    .hero-cta .btn {
        padding: 0.5rem var(--space-md);
        font-size: 0.875rem;
    }
    
    section {
        padding: var(--space-lg) 0;
    }
    
    .footer {
        padding: var(--space-lg) 0 var(--space-sm);
    }
}

@media (max-height: 600px) {
    .hero {
        padding-top: 60px;
        padding-bottom: var(--space-xs);
    }
    
    .hero-content {
        padding: 0 var(--space-sm);
    }
    
    .hero-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: var(--space-xs);
    }
    
    .hero-title {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        margin-bottom: 0.375rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 1.5vw, 0.875rem);
        margin-bottom: 0.375rem;
        line-height: 1.3;
    }
    
    .vsl-container {
        margin: 0.375rem 0;
    }
    
    .video-wrapper {
        width: 65vw;
    }
    
    .video-placeholder {
        padding: var(--space-xs);
    }
    
    .video-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .hero-cta {
        gap: 0.375rem;
        margin-top: 0.375rem;
        flex-direction: column;
    }
    
    .hero-cta .btn {
        padding: 0.375rem var(--space-sm);
        font-size: 0.8125rem;
        width: 100%;
    }
    
    section {
        padding: var(--space-md) 0;
    }
    
    .footer {
        padding: var(--space-md) 0 var(--space-xs);
    }
}

/* ========================================
   SECTION COMMONS
   ======================================== */

section {
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: 10;
}

.section-header {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    color: var(--text-medium);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(6, 182, 212, 0.02) 100%);
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--white);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* ========================================
   FOR WHO SECTION - VARIANTA 4: PERSONA CARDS
   ======================================== */

.for-who {
    background: var(--white);
}

/* Persona Grid */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.persona-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(6, 182, 212, 0.04) 100%);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
}

.persona-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, rgba(6, 182, 212, 0.08) 100%);
}

.persona-card.highlighted {
    border-color: var(--primary);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, var(--white) 100%);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: var(--space-lg);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.persona-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--primary-pale);
}

.persona-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.persona-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 var(--space-xs) 0;
    color: var(--text-dark);
}

.persona-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.persona-quote {
    background: var(--bg-light);
    padding: var(--space-md);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.persona-section {
    margin-bottom: var(--space-lg);
}

.persona-section:last-child {
    margin-bottom: 0;
}

.persona-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.persona-problems,
.persona-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.persona-problems li {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(239, 68, 68, 0.05);
    border-left: 2px solid #EF4444;
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.4;
}

.persona-benefits li {
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary-pale);
    border-left: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .persona-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .persona-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
    
    .persona-info h3 {
        font-size: 1.125rem;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(6, 182, 212, 0.03) 100%);
    border: 2px solid rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.card > *:not(.card-particle-canvas) {
    position: relative;
    z-index: 1;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.card-featured {
    position: relative;
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.02) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-icon {
    margin-bottom: var(--space-md);
    color: var(--footer-bg);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.card-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.card-section {
    margin-bottom: var(--space-md);
}

.card-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.card-section ul {
    list-style: none;
    padding: 0;
}

.card-section li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.card-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-light);
}

.problems-list {
    list-style: none;
    padding: 0;
}

.problems-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    padding-left: 0;
}

.problems-list li::before {
    display: none;
}

.problems-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.problems-list li span {
    flex: 1;
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 767px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BENEFITS SECTION - NEW DESIGN
   ======================================== */

.benefits {
    background: var(--bg-light);
}

/* New Benefits Container - 3 Equal Columns */
.benefits-container-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

/* Benefit Pillar */
.benefit-pillar {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.benefit-pillar:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* Featured Pillar */
.benefit-pillar-featured {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

.benefit-pillar-featured:hover {
    transform: translateY(-12px) scale(1.02);
}

.pillar-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Pillar Header */
.pillar-header {
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pillar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.pillar-learn::before {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.pillar-apply::before {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.pillar-receive::before {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.pillar-number {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-accent);
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
    z-index: 0;
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    position: relative;
    z-index: 1;
}

.pillar-subtitle {
    font-size: 0.9375rem;
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Pillar Content */
.pillar-content {
    padding: var(--space-lg);
    background: var(--white);
}

.pillar-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    margin-bottom: var(--space-md);
    border: 2px solid transparent;
}

.pillar-item:last-child {
    margin-bottom: 0;
}

.pillar-item:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.pillar-item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.pillar-item-content h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.pillar-item-content p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Highlighted Item */
.pillar-item-highlight {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.03) 100%);
    border-color: rgba(255, 165, 0, 0.3);
    position: relative;
}

.pillar-item-highlight::before {
    content: '⭐ BONUS';
    position: absolute;
    top: -10px;
    right: 12px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.pillar-item-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.12) 0%, rgba(255, 165, 0, 0.06) 100%);
    border-color: #FFA500;
}

.pillar-item-highlight .pillar-item-content h4 {
    color: #D97706;
}

/* Color Variations for Each Pillar */
.benefit-pillar:nth-child(1) .pillar-item:hover {
    border-color: #06B6D4;
}

.benefit-pillar:nth-child(2) .pillar-item:hover {
    border-color: #10B981;
}

.benefit-pillar:nth-child(2) .pillar-number {
    color: #10B981;
}

.benefit-pillar:nth-child(3) .pillar-item:hover {
    border-color: #F59E0B;
}

.benefit-pillar:nth-child(3) .pillar-number {
    color: #F59E0B;
}

/* Responsive */
@media (max-width: 1200px) {
    .benefits-container-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-pillar:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .benefits-container-new {
        grid-template-columns: 1fr;
    }
    
    .benefit-pillar:nth-child(3) {
        grid-column: span 1;
    }
    
    .pillar-number {
        font-size: 3rem;
    }
    
    .pillar-icon {
        font-size: 3rem;
    }
    
    .pillar-title {
        font-size: 1.5rem;
    }
    
    .pillar-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pillar-item-icon {
        font-size: 2.5rem;
    }
}

/* Old Benefits Styles (kept for compatibility) */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.benefit-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-category > *:not(.card-particle-canvas) {
    position: relative;
    z-index: 1;
}

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

.benefit-category-featured {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, var(--white) 100%);
    border: 2px solid var(--primary);
}

.category-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--primary-pale);
}

.category-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.benefit-item:hover {
    background: var(--primary-pale);
    transform: translateX(4px);
}

.benefit-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.benefit-content p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.highlight-benefit {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 2px solid var(--primary);
}

.highlight-benefit:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
}

@media (max-width: 767px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SPEAKERS SECTION
   ======================================== */

.speakers {
    background: var(--white);
}

/* New Speaker Cards Design */
.speakers-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.speaker-card-new {
    background: var(--white);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.speaker-card-new > *:not(.card-particle-canvas) {
    position: relative;
    z-index: 1;
}

.speaker-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.speaker-image-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-light);
}

.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-slow);
}

.speaker-card-new:hover .speaker-photo {
    transform: scale(1.05);
}

.speaker-info {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}

.speaker-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.speaker-title-role {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.speaker-bio {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: var(--space-sm) 0 0 0;
    flex: 1;
}

@media (max-width: 767px) {
    .speakers-main-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .speaker-info {
        padding: var(--space-md);
    }
    
    .speaker-name {
        font-size: 1.125rem;
    }
    
    .speaker-bio {
        font-size: 0.875rem;
    }
}

.speakers-international {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 1024px) {
    .speakers-international {
        grid-template-columns: 1.5fr 1fr;
    }
}

.speaker-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(6, 182, 212, 0.02) 100%);
    border: 2px solid rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-4px);
    border-color: var(--footer-bg);
    box-shadow: 0 8px 24px rgba(2, 67, 75, 0.2);
}

.speaker-card-large {
    padding: var(--space-xl);
}

.speaker-tba-badge,
.speaker-confirmed-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.speaker-tba-badge {
    background: var(--text-light);
    color: var(--white);
}

.speaker-confirmed-badge {
    background: var(--primary);
    color: var(--white);
}

.speaker-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.speaker-blur {
    filter: blur(10px);
    opacity: 0.6;
}

.speaker-placeholder,
.speaker-placeholder-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.speaker-subtitle,
.speaker-role {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.speaker-credentials,
.speaker-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.speaker-credentials li,
.speaker-highlights li {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.speaker-cta {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--primary-pale);
}

.speaker-cta p {
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

/* Lateral Cards */
.speakers-lateral {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.speaker-card-medium {
    padding: var(--space-lg);
}

.speaker-card-medium .speaker-image {
    aspect-ratio: 1;
    margin-bottom: var(--space-md);
}

/* National Speakers */
.speakers-national {
    margin-top: var(--space-3xl);
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.subsection-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-lg);
}

.speaker-card-small {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border: 2px solid rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.speaker-card-small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.speaker-avatar {
    margin: 0 auto var(--space-md);
    width: 100px;
    height: 100px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pale) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.speaker-card-small h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.speaker-specialty {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.speaker-topic {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.4;
}

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

.testimonials {
    background: var(--bg-light);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--footer-bg);
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(2, 67, 75, 0.15);
    border-left-width: 6px;
    transform: translateY(-4px);
}

.testimonial-card > *:not(.card-particle-canvas) {
    position: relative;
    z-index: 1;
}

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

.testimonial-stars {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: #FFA500;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 2px solid rgba(6, 182, 212, 0.1);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
    display: block;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border: 3px solid transparent;
}

.gallery-item:hover {
    border-color: var(--footer-bg);
    box-shadow: 0 8px 24px rgba(2, 67, 75, 0.2);
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
}

.gallery-placeholder p {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

/* Video Clips */
.video-clips {
    margin-top: var(--space-3xl);
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.clip-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    background: var(--bg-light);
}

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

.clip-video {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.clip-video:hover {
    opacity: 0.95;
}

.clip-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none; /* Hidden by default, shown when video is paused */
}

.clip-play-button.show {
    display: block;
    animation: pulse-play 2s ease-in-out infinite;
}

.clip-play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes pulse-play {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.clip-placeholder {
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
}

.clip-placeholder p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

/* ========================================
   VIDEO MODAL
   ======================================== */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    z-index: 10;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

@media (min-width: 768px) {
    .video-modal-content {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .video-modal {
        padding: var(--space-md);
    }
    
    .video-modal-content {
        max-width: 100%;
        max-height: 80vh;
    }
}

/* ========================================
   PACKAGES SECTION - VARIANTA 4: HOVER CARDS
   ======================================== */

.packages {
    background: var(--bg-light);
}

/* Hover Cards Grid */
.hover-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.hover-card {
    height: 600px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
}

.hover-card.featured-hover .hover-card-front {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.hover-card.featured-hover .hover-card-back {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, var(--white) 100%);
    border-color: var(--primary);
    border-width: 3px;
}

.hover-card.featured-hover .hover-card-back h4 {
    color: var(--primary);
}

.hover-card.featured-hover .hover-card-back ul li {
    border-left-color: var(--primary);
}

.hover-card.featured-hover .hover-card-back .btn-primary {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.hover-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--footer-bg);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.hover-card-front,
.hover-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.hover-card-front {
    background: linear-gradient(135deg, var(--white) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 2px solid rgba(6, 182, 212, 0.2);
}

.hover-card-back {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border: 3px solid var(--primary);
    transform: rotateY(180deg);
    overflow-y: auto;
    justify-content: flex-start;
    padding: var(--space-xl);
    gap: var(--space-md);
}

.hover-card.flipped .hover-card-front {
    transform: rotateY(180deg);
}

.hover-card.flipped .hover-card-back {
    transform: rotateY(0deg);
}

.hover-icon {
    font-size: 5.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.hover-card-front h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.hover-card-front p {
    opacity: 0.7;
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.hover-hint {
    font-size: 0.875rem;
    opacity: 0.6;
    font-style: italic;
}

.hover-card-back h4 {
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
    font-family: var(--font-display);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-pale);
}

.hover-card-back ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hover-card-back ul li {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.hover-card-back ul li:hover {
    transform: translateX(4px);
    border-left-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.hover-card-back ul li strong {
    color: var(--primary);
    font-weight: 600;
}

.hover-card-back .btn {
    margin-top: auto;
    width: 100%;
    font-size: 1rem;
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-md);
}

.hover-card-back .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
    .hover-card {
        height: 550px;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.package-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(6, 182, 212, 0.03) 100%);
    border: 2px solid rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.package-card > *:not(.card-particle-canvas) {
    position: relative;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.package-featured {
    border-color: var(--primary);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.02) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.package-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--primary-pale);
}

.package-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.package-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.package-features li {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.packages-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 1rem;
    color: var(--text-medium);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--white) 0%, rgba(6, 182, 212, 0.02) 100%);
    border: 2px solid rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.faq-item > *:not(.card-particle-canvas) {
    position: relative;
    z-index: 1;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
}

/* ========================================
   URGENCY BAND
   ======================================== */

.urgency-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-2xl) 0;
}

.urgency-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.urgency-text {
    text-align: left;
}

.urgency-icon {
    font-size: 2rem;
    line-height: 1;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.urgency-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.urgency-text p {
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    opacity: 0.9;
}

/* Timer */
.urgency-timer {
    display: flex;
    gap: var(--space-sm);
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    min-width: 70px;
}

.timer-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.timer-divider {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .urgency-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .urgency-text {
        width: 100%;
    }
    
    .urgency-timer {
        width: 100%;
        justify-content: flex-start;
    }
    
    .timer-block {
        min-width: 60px;
        padding: var(--space-sm);
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
}

/* ========================================
   FORM SECTION
   ======================================== */

.form-section {
    background: var(--bg-light);
    padding: var(--space-3xl) 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    min-height: 600px;
    height: 600px;
}

.form-wrapper iframe {
    min-height: 600px;
}

@media (max-width: 767px) {
    .form-wrapper {
        min-height: 650px;
        height: 650px;
    }
    
    .form-wrapper iframe {
        min-height: 650px;
    }
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-medium);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--space-md);
}

.form-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.form-success p {
    font-size: 1rem;
    color: var(--text-medium);
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: var(--space-xl);
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
    z-index: 100;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-img {
    height: 100px;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    color: var(--primary);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-column li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-base);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 1023px) {
    :root {
        --space-3xl: 4rem;
    }
}

@media (max-width: 767px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 3rem;
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Smooth scroll offset for anchors */
:target {
    scroll-margin-top: 100px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* Ensure all interactive elements are clickable */
a, button, input, select, textarea, [role="button"], [onclick] {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

/* Ensure canvas doesn't block anything */
canvas {
    pointer-events: none !important;
    touch-action: none;
}

/* ========================================
   SPEAKERS MODERN DESIGN
   ======================================== */

.speakers-category {
    margin-bottom: calc(var(--space-2xl) * 1.5);
}

.speakers-category:last-of-type {
    margin-bottom: var(--space-2xl);
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.02em;
}

.category-badge.international {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #2563EB;
}

.category-badge.national {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.05) 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    color: #DC2626;
}

.badge-icon {
    font-size: 1.5rem;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.speaker-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.speaker-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.speaker-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--bg-light);
}

.speaker-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.speaker-overlay {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.speaker-content {
    padding: var(--space-lg);
}

.speaker-name-new {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.speaker-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.speaker-credentials {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.speaker-description {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.speaker-topics {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.topic-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-pale);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ========================================
   TESTIMONIALS MODERN DESIGN
   ======================================== */

.testimonial-stats-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(6, 182, 212, 0.01) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.stat-hero-item {
    text-align: center;
    flex: 1;
}

.stat-hero-item.stat-hero-featured {
    transform: scale(1.15);
}

.stat-hero-number {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-hero-featured .stat-hero-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-hero-label {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stat-hero-sublabel {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.stat-hero-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.3;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.testimonial-card-modern {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.testimonial-card-modern.featured-large {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, var(--white) 100%);
    border-color: var(--primary);
}

.testimonial-quote-icon {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    position: absolute;
    top: -10px;
    left: var(--space-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}

.star-filled {
    color: #FFA500;
    font-size: 1.125rem;
}

.testimonial-text-modern {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-card-modern.featured-large .testimonial-text-modern {
    font-size: 1.25rem;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar-modern {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name-modern {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.author-role-modern {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.author-result {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.video-style {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, var(--white) 100%);
}

.video-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-stats-hero {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .stat-hero-divider {
        width: 60px;
        height: 2px;
    }
    
    .testimonial-card-modern.featured-large {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .stat-hero-number {
        font-size: 2.5rem;
    }
}

