/* =========================================
   STATS SECTION - Animated Counters
   ========================================= */
.stats-section {
    background: var(--color-bg-main);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .stat-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 1));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transition: left 0.6s ease;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(220, 254, 17, 0.3);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(220, 254, 17, 0.1);
}

[data-theme="light"] .stat-box:hover {
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(168, 214, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 254, 17, 0.1), rgba(220, 254, 17, 0.05));
    border: 1px solid rgba(220, 254, 17, 0.2);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--color-accent);
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(220, 254, 17, 0.2), rgba(220, 254, 17, 0.1));
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.2;
    font-family: var(--font-heading);
    display: inline-block;
}


.stat-prefix {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-accent);
    display: inline-block;
    margin-right: 4px;
}

.stat-suffix {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-accent);
    display: inline-block;
    margin-left: 4px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 16px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* =========================================
   ENHANCED TESTIMONIALS
   ========================================= */
.testimonial-card {
    background: linear-gradient(135deg, rgba(20, 20, 24, 0.8), rgba(14, 14, 16, 0.9));
    backdrop-filter: blur(30px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 1));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(220, 254, 17, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 254, 17, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(220, 254, 17, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), rgba(124, 58, 237, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.author-rating {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* =========================================
   TRUST BADGES & SOCIAL PROOF
   ========================================= */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 60px 0;
    opacity: 0.6;
    transition: opacity var(--transition-smooth);
}

.trust-badges:hover {
    opacity: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.trust-badge:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.trust-badge-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* =========================================
   CTA SECTION - Enhanced
   ========================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--color-bg-main);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

[data-theme="light"] .cta-section {
    background: #ffffff;
    border-top-color: rgba(0, 0, 0, 0.05);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.cta-section::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

[data-theme="light"] .cta-title {
    color: #111827;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

[data-theme="light"] .cta-subtitle {
    color: #4b5563;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   TIMELINE - Enhanced Visual
   ========================================= */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent), transparent);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent), #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    z-index: 1;
    border: 4px solid var(--color-bg-main);
}

[data-theme="light"] .timeline-marker {
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(20, 20, 24, 0.7), rgba(14, 14, 16, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-smooth);
}

[data-theme="light"] .timeline-content {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.timeline-content:hover {
    transform: translateX(8px);
    border-color: rgba(220, 254, 17, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.timeline-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 12px;
}

.timeline-description {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.timeline-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(220, 254, 17, 0.1);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    border: 1px solid rgba(220, 254, 17, 0.2);
}

[data-theme="light"] .timeline-badge {
    background: rgba(137, 176, 0, 0.08);
    border-color: rgba(137, 176, 0, 0.15);
}

.elegant-decorative-title {
    font-family: var(--font-heading);
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.elegant-decorative-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

[dir="rtl"] .elegant-decorative-title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

/* RTL Support for Timeline */
[dir="rtl"] .timeline-item {
    padding-left: 0;
    padding-right: 80px;
}

[dir="rtl"] .timeline-item::before {
    left: auto;
    right: 32px;
}

[dir="rtl"] .timeline-marker {
    left: auto;
    right: 0;
}

[dir="rtl"] .timeline-content:hover {
    transform: translateX(-8px);
}

/* =========================================
   RESPONSIVE - Stats & Testimonials
   ========================================= */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-box {
        padding: 32px 24px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* =========================================
   BENTO GRID LAYOUT (Why Section)
   ========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.bento-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 254, 17, 0.4);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(220, 254, 17, 0.1);
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(220, 254, 17, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-card:hover::after {
    opacity: 1;
}

/* Specific Card Spans */
.bento-col-4 {
    grid-column: span 4;
}

.bento-col-6 {
    grid-column: span 6;
}

.bento-col-8 {
    grid-column: span 8;
}

/* Large feature */

.bento-icon-lg {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.bento-text {
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {

    .bento-col-4,
    .bento-col-6,
    .bento-col-8 {
        grid-column: span 12;
        /* Full width on mobile/tablet */
    }
}

/* =========================================
   NEWSLETTER FOOTER
   ========================================= */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 32px;
    border: 1px solid var(--color-border);
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.newsletter-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 12px 24px;
    color: var(--color-text-main);
}

.newsletter-input:focus {
    border-color: var(--color-accent);
    outline: none;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

.btn-icon-only {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-text-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon-only:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(220, 254, 17, 0.4);
}

/* =========================================
   FOMO NOTIFICATIONS
   ========================================= */
.fomo-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(20, 20, 24, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

[data-theme="light"] .fomo-notification {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fomo-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.fomo-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 254, 17, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fomo-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-text-main);
}

.fomo-content p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.fomo-time {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    margin-top: 4px;
    display: block;
}

/* =========================================
   FLOATING ACTION BUTTON (WhatsApp)
   ========================================= */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fab-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .fomo-notification {
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        bottom: 16px;
        width: 90%;
    }

    .fomo-notification.active {
        transform: translateX(-50%) translateY(0);
    }

    .fab-whatsapp {
        bottom: 80px;
        /* Above bottom nav often found on mobile */
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* =========================================
   LOGO WALL (Infinite Scroll)
   ========================================= */
.logo-wall-section {
    padding: 40px 0;
    background: var(--color-bg-surface);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
}

.logo-wall-title {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.logo-marquee {
    display: flex;
    width: fit-content;
    animation: scrollLogos 40s linear infinite;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-muted);
    margin: 0 40px;
    opacity: 0.5;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-item:hover {
    opacity: 1;
    color: var(--color-text-main);
    transform: scale(1.05);
}

.logo-item i {
    font-size: 2rem;
    color: var(--color-accent);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes duplicated content */
}

/* Gradient masks for smooth fade edges */
.logo-wall-section::before,
.logo-wall-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-wall-section::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-main), transparent);
}

.logo-wall-section::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-main), transparent);
}

/* =========================================
   CHECKLIST SECTION
   ========================================= */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    transform: translateX(5px);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(220, 254, 17, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.checklist-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.checklist-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* =========================================
   PROCESS SECTION - 3 Steps Walkthrough
   ========================================= */
.process-section {
    background: var(--color-bg-main);
    position: relative;
    padding-bottom: 60px;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
    z-index: 2;
}

.step-num-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 254, 17, 0.05);
    border: 1px solid rgba(220, 254, 17, 0.2);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-smooth);
}

.process-step:hover .step-num-wrapper {
    background: var(--color-accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--color-accent-glow);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    transition: all var(--transition-smooth);
}

.process-step:hover .step-number {
    color: var(--color-text-dark);
}

.process-step h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.process-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 254, 17, 0.3), transparent);
    margin-bottom: 40px;
    /* Align with circles approx */
    z-index: 1;
}

@media (max-width: 992px) {
    .process-grid {
        flex-direction: column;
        gap: 60px;
    }

    .process-connector {
        display: none;
    }
}

/* =========================================
   CHECKLIST SECTION - Glassmorphic Audit
   ========================================= */
.checklist-section {
    background: var(--color-bg-surface);
}

.checklist-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .checklist-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.checklist-header {
    text-align: center;
    margin-bottom: 48px;
}

.checklist-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .checklist-header h2 {
    background: linear-gradient(180deg, var(--color-text-main) 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.checklist-header p {
    color: var(--color-text-muted);
}

[data-theme="light"] .checklist-header p {
    color: #666;
}

.checklist-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition-smooth);
}

[data-theme="light"] .checklist-item {
    background: rgba(0, 0, 0, 0.02);
}

.checklist-item:hover {
    background: rgba(220, 254, 17, 0.05);
    border-color: rgba(220, 254, 17, 0.2);
    transform: translateY(-5px);
}

.checklist-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.checklist-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.checklist-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .checklist-card {
        padding: 40px 24px;
    }

    .checklist-header h2 {
        font-size: 1.8rem;
    }
}

.registration-fomo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 254, 17, 0.1);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 16px;
    border: 1px solid rgba(220, 254, 17, 0.2);
    animation: flash 2s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* =========================================
   COMPARISON SECTION - Old vs New
   ========================================= */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 0.1fr 1fr;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.comparison-card {
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-smooth);
}

.comparison-card.old {
    border-left: 4px solid #ef4444;
}

.comparison-card.new {
    border-left: 4px solid var(--color-accent);
    background: rgba(220, 254, 17, 0.02);
    box-shadow: 0 0 30px rgba(220, 254, 17, 0.05);
}

.comparison-vs {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-muted);
    text-align: center;
    opacity: 0.5;
}

.comparison-list {
    margin-top: 32px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.comparison-card.new .comparison-list li {
    color: var(--color-text-main);
}

.comparison-list i {
    font-size: 1.25rem;
}

.comparison-card.old i {
    color: #ef4444;
}

.comparison-card.new i {
    color: var(--color-accent);
}

/* =========================================
   RESULTS HIGHLIGHT - Metric Cards
   ========================================= */
.results-highlight {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-surface) 0%, var(--color-bg-main) 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.result-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.result-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.result-value {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.result-label {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-vs {
        display: none;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SPEAKERS SECTION - Elite Mentor Cards
   ========================================= */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.speaker-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.speaker-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.speaker-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #111;
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.speaker-card:hover .speaker-img {
    transform: scale(1.1);
}

.speaker-socials {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, var(--color-bg-main) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    gap: 16px;
    transition: all 0.4s ease;
}

.speaker-card:hover .speaker-socials {
    bottom: 0;
}

.speaker-socials a {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.speaker-socials a:hover {
    transform: translateY(-5px) scale(1.1);
}

.speaker-info {
    padding: 32px;
    text-align: center;
}

.speaker-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.speaker-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   HERO FLOATING ELEMENTS - 3D Depth
   ========================================= */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-item {
    position: absolute;
    background: rgba(220, 254, 17, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 254, 17, 0.2);
    border-radius: 12px;
    padding: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatingAnimation 6s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.float-2 {
    top: 65%;
    left: 12%;
    animation-delay: 1.5s;
}

.float-3 {
    top: 15%;
    right: 10%;
    animation-delay: 3s;
}

.float-4 {
    top: 75%;
    right: 15%;
    animation-delay: 4.5s;
}

@keyframes floatingAnimation {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@media (max-width: 992px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .floating-elements {
        display: none;
    }
}

/* =========================================
   LOGO WALL (Infinite Scroll) - Refined
   ========================================= */
.logo-wall-section {
    padding: 60px 0;
    background: var(--color-bg-main);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.logo-marquee-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.logo-marquee {
    display: flex;
    width: fit-content;
    animation: scrollLogos 30s linear infinite;
    gap: 0;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-muted);
    padding: 0 60px;
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 15px;
    filter: grayscale(1);
}

.logo-item:hover {
    opacity: 1;
    color: var(--color-accent);
    transform: scale(1.1);
    filter: grayscale(0);
}

.logo-item i {
    font-size: 2.2rem;
    color: var(--color-accent);
    filter: drop-shadow(0 0 10px rgba(220, 254, 17, 0.3));
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-wall-section::before,
.logo-wall-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-wall-section::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-main), transparent);
}

.logo-wall-section::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-main), transparent);
}

/* Action Marquee logic moved to landing-premium.css for advanced 3D effects */

[dir="rtl"] .action-marquee-content {
    animation-direction: reverse;
}

/* =========================================
   PARTICLES CONTAINER
   ========================================= */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particles-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}