/* ========================================
   Feature Page Styles
   (loaded alongside style.css)
   ======================================== */

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.25s ease;
}

.breadcrumb:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.breadcrumb:hover svg {
    transform: translateX(-3px);
}

/* Feature Hero */
.feature-hero {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.feature-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #d1d1d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-hero .feature-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Showcase */
.feature-video-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 3rem;
    max-width: 500px;
}

.feature-video-showcase video {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    border-radius: 12px;
}

/* Extended Description */
.feature-body {
    max-width: 650px;
    margin: 0 auto 3rem;
    text-align: center;
}

.feature-body h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-body p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-body ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    display: inline-block;
}

.feature-body ul li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-body ul li::before {
    content: "✦";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

/* CTA Section */
.feature-cta {
    max-width: 600px;
    margin: 2rem auto 3rem;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
}

.feature-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-cta p {
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 600px) {
    .feature-hero h1 {
        font-size: 2rem;
    }

    .feature-hero .feature-subtitle {
        font-size: 1.05rem;
    }

    .feature-video-showcase video {
        max-width: 85vw;
    }

    .feature-cta {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 2rem 1.2rem;
    }
}