/* ========================================
   FEATURE PAGES - INDIVIDUAL FEATURE STYLING
   ======================================== */

/* Feature Page Hero */
.feature-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--space-16) 0 var(--space-12);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.feature-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(211, 97, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 20%, rgba(255, 184, 77, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.feature-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.feature-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
}

.feature-breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.feature-breadcrumb a:hover {
    color: var(--color-primary);
}

.feature-breadcrumb svg {
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    padding: var(--space-5);
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-icon-large svg {
    width: 100%;
    height: 100%;
    color: white;
}

.feature-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.15;
}

.feature-tagline {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.feature-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-primary);
    color: white !important;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: all var(--transition-base);
}

.feature-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
    color: white !important;
}

/* Feature Demo Section */
.feature-demo-section {
    padding: var(--space-16) 0;
    background: var(--color-bg-primary);
}

.feature-demo-container {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-image-frame {
    background: var(--color-bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
}

/* Feature Benefits Grid */
.feature-benefits-section {
    padding: var(--space-16) 0;
    background: var(--color-bg-secondary);
}

.feature-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.benefit-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.benefit-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    padding: var(--space-4);
    background: rgba(211, 97, 53, 0.1);
    border-radius: var(--radius-xl);
    color: var(--color-primary);
}

.benefit-card-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.benefit-card p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* How It Works Section */
.feature-how-section {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, #FAFAF9 0%, #FFFFFF 100%);
}

.feature-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    max-width: 800px;
    margin: var(--space-10) auto 0;
}

.feature-step {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}

.step-number-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.step-content h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.step-content p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Related Features Section */
.related-features-section {
    padding: var(--space-16) 0;
    background: var(--color-bg-secondary);
}

.related-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.related-feature-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition-base);
}

.related-feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.related-feature-icon {
    font-size: 2rem;
}

.related-feature-info h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.related-feature-info span {
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
}

/* Feature CTA Section */
.feature-cta-section {
    padding: var(--space-16) 0;
    background: var(--gradient-dark);
    text-align: center;
}

.feature-cta-section h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.feature-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
}

.feature-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-10);
    background: white;
    color: var(--color-primary) !important;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.feature-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--color-primary) !important;
}

.feature-cta-bonus {
    display: block;
    margin-top: var(--space-4);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

/* Feature Page Navigation */
.feature-nav {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4);
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--color-border-light);
    z-index: 100;
}

.feature-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-xl);
    margin: 0 auto;
    gap: var(--space-4);
}

.feature-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.feature-nav-link:hover {
    background: rgba(211, 97, 53, 0.1);
    color: var(--color-primary);
}

.feature-nav-cta {
    padding: var(--space-3) var(--space-6);
    background: var(--gradient-primary);
    color: white !important;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transition: all var(--transition-base);
}

.feature-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    color: white !important;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-hero {
        min-height: auto;
        padding: var(--space-12) 0 var(--space-10);
    }

    .feature-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number-badge {
        margin: 0 auto;
    }

    .feature-nav-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-nav-link {
        font-size: var(--font-size-xs);
        padding: var(--space-2) var(--space-3);
    }
}