.scroll-indicator {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    animation: scroll-bounce 2.2s ease-in-out infinite;
}

.showcase-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 0, 106, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.02);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.feature-icon.icon-purple { background: rgba(121, 40, 202, 0.18); }
.feature-icon.icon-pink   { background: rgba(255,   0, 128, 0.15); }
.feature-icon.icon-cyan   { background: rgba(  0, 200, 200, 0.15); }
.feature-icon.icon-blue   { background: rgba(  0, 112, 243, 0.16); }
.feature-icon.icon-amber  { background: rgba(255, 178,   0, 0.15); }
.feature-icon.icon-green  { background: rgba(  0, 200, 100, 0.15); }

.feature-icon.icon-purple svg { stroke: #a855f7; }
.feature-icon.icon-pink   svg { stroke: var(--primary-pink); }
.feature-icon.icon-cyan   svg { stroke: #00d4d4; }
.feature-icon.icon-blue   svg { stroke: #3b9dff; }
.feature-icon.icon-amber  svg { stroke: #ffb700; }
.feature-icon.icon-green  svg { stroke: #00d471; }

.feature-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

.screenshots-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.screenshots-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.screenshots-title svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-pink);
    fill: none;
    stroke-width: 2;
}

.screenshots-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 48px;
}

.screenshots-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.screenshots-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0a0c;
    min-height: 500px;
    cursor: grab;
}

.screenshots-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    height: 100%;
    min-height: 500px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-track .screenshot-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

.screenshot-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    padding: 40px;
}

.screenshot-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 16px;
}

.screenshot-placeholder p {
    font-size: 16px;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-slide.active  { opacity: 1; }
.screenshot-slide.enter-right,
.screenshot-slide.enter-left,
.screenshot-slide.exit-left,
.screenshot-slide.exit-right { opacity: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 0;
}

.carousel-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 5px;
}

.how-it-works {
    padding: 60px 0;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    width: 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.step-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.step-number {
    width: 48px;
    height: 48px;
    background: rgba(212, 0, 106, 0.08);
    border: 1px solid rgba(212, 0, 106, 0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-pink);
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-arrow {
    color: rgba(255, 255, 255, 0.1);
    align-self: center;
    flex-shrink: 0;
}

.step-arrow svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-glow {
    background: #fff;
    color: #000;
}

.btn-glow:hover {
    opacity: 0.9;
}

.cta-section {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    animation: border-glow 5s ease-in-out infinite;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 0, 128, 0.08), transparent 65%);
    pointer-events: none;
}

.cta-deco {
    position: absolute;
    right: -60px;
    top: -60px;
    opacity: 0.06;
    pointer-events: none;
}

.cta-deco svg {
    width: 280px;
    height: 280px;
}

.cta-deco-left {
    left: -60px;
    right: auto;
    bottom: -60px;
    top: auto;
    transform: scaleX(-1);
}

.cta-content {
    position: relative;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .cta-actions {
        flex-direction: column;
    }

    .screenshots-container {
        min-height: 300px;
    }
}

.content-section[data-section="main"] .features-list {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.content-section[data-section="main"] .features-list h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.content-section[data-section="main"] .features-list ul {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 2;
    list-style: none;
    padding: 0;
}

.content-section[data-section="main"] .features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section[data-section="main"] .features-list li svg {
    width: 18px;
    height: 18px;
    stroke: #00ff80;
    fill: none;
    stroke-width: 2;
}

.content-section[data-section="main"] .stat-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.5;
}

.content-section[data-section="main"] .quick-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.content-section[data-section="main"] .quick-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 12px;
}
