.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Logo Slider */
.logo-slider-section {
    padding: 60px 0;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.slider-track-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slider-track.reverse {
    animation: scroll-reverse 60s linear infinite;
}

.slider-track img {
    height: 100px;
    width: 200px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s;
    filter: none;
    background-color: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
}

.slider-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.2s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.step-icon {
    font-size: 4rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.step-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    align-items: start;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary);
    transform: scale(1.02);
    z-index: 1;
}

.pricing-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    margin: -18px -18px 28px;
    padding: 24px;
    border-radius: calc(var(--border-radius) + 2px);
    background:
        radial-gradient(circle at 50% 24%, rgba(58, 122, 254, 0.16), transparent 42%),
        #fff;
    overflow: hidden;
}

.pricing-card-image img {
    width: min(100%, 310px);
    max-height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.22));
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header .period {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pricing-header .price {
    font-family: var(--font-heading);
    font-size: 3.3rem;
    font-weight: 700;
    color: var(--text-heading);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-body);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

/* Movies Slider */
.movies-slider-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.movies-slider-section .slider-track img {
    height: 480px;
    width: 330px;
    object-fit: cover;
    opacity: 0.8;
    filter: none;
    border-radius: 4px;
}

.movies-slider-section .slider-track img:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Banner */
.banner-section {
    padding: 40px 0;
    background-color: var(--bg-primary);
}

.banner-image img {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* Features (Why Choose Us) */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 100%;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--border-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
}

.timeline-item.left {
    left: 0;
    padding: 20px 180px 20px 20px; /* 180px gap on right */
    text-align: left;
}

.timeline-item.right {
    left: 50%;
    padding: 20px 20px 20px 180px; /* 180px gap on left */
    text-align: left;
}

/* Dot on the line */
.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px var(--bg-primary);
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-item.visible .timeline-dot {
    background: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary), 0 0 30px var(--accent-primary);
}

/* Branch Line (Attached to Item now) */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 40px; /* Center of dot */
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s; /* Delay for dot */
    z-index: 1;
}

.timeline-item.visible::before {
    width: 180px; /* Triple length */
}

.timeline-item.left::before {
    right: 0;
    transform-origin: right;
}

.timeline-item.right::before {
    left: 0;
    transform-origin: left;
}

/* Content Box */
.timeline-content {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    opacity: 0;
    transform: perspective(1000px) rotateX(-10deg) translateY(20px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s; /* Delay after branch */
}
