/* Locked Pages: Shared Components */
.hero-white {
    width: 100%;
    /* min-height: 100vh; Removed to allow 300vh override */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    position: relative;
    z-index: 2;
    overflow: visible;
    /* FORCE visible for sticky to work */
}


/* Shared Component Blocks */
/* Mobile Responsiveness */
@media (max-width: 900px) {

}

/* How It Works (Timeline) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: var(--color-border-light);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    z-index: 2;
}

.step-content {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

/* Influencer Section */

/* Features Section (Tabs) */
.features-section {
    background-color: var(--color-bg-light);
    padding: 100px 0;
}

.tab-link {
    padding-bottom: 20px;
    font-size: 18px;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.tab-link.active {
    color: var(--color-primary);
    font-weight: 700;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
}

.tab-content {
    display: none;
    animation: fadeEffect 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Scrollytelling Features Section */

.scrolly-container {
    display: flex;
    align-items: flex-start;
    padding: 0;
    /* Full width inside container */
    max-width: 1400px;
    /* Wider for this section */
    margin: 0 auto;
}

/* Sticky Image Column (Left) */

.feature-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 60px;
    /* Added padding to make it smaller/contained */
    opacity: 0;
    will-change: transform, opacity;
    /* transition: opacity 0.6s... removed for JS control */
    transform: scale(0.95);
    /* Start slightly smaller */
}

/* Scrollable Text Column (Right) */

.feature-step {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px 40px 0;
    opacity: 1;
    /* Always fully visible, no fade */
    transition: none;
    transform: none !important;
}

/* Text - Always Visible, No Effects */
.feature-step h2,
.feature-step p,
.feature-step li {
    opacity: 1;
    transform: none !important;
    filter: none;
    transition: none;
    will-change: auto;
}

.step-content {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Fixed Step Number - Simple Text */
.step-number {
    position: relative;
    /* Reset from potential defaults */
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;

    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-block;
}

