/* Feature Page Specific Styles */

/* Feature Hero */
.feature-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: var(--bg-dark);
    overflow: hidden;
}

.feature-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 600;
}

.feature-badge i {
    font-size: 1.2rem;
}

.feature-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.feature-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature Details Section */
.feature-details {
    padding: 100px 0;
    background: var(--bg-dark-2);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 24px;
}

.detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.detail-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* How It Works / Architecture */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-dark);
}

.architecture-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.arch-step {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    min-width: 200px;
    max-width: 240px;
    transition: all 0.3s ease;
}

.arch-step:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.arch-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 16px;
}

.arch-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.arch-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.arch-arrow {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .architecture-diagram {
        flex-direction: column;
    }
    
    .arch-arrow {
        transform: rotate(90deg);
    }
    
    .arch-step {
        max-width: 100%;
        width: 100%;
    }
}

/* Use Cases Section */
.use-cases {
    padding: 100px 0;
    background: var(--bg-dark-2);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.use-case-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.use-case-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: var(--bg-dark);
}

.screenshot-container {
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: 100px 0;
    background: var(--bg-dark-2);
}

.comparison-table {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--bg-dark-3);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 16px 24px;
    text-align: center;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 2;
    color: var(--text-white);
}

.comparison-cell i.fa-check {
    color: #10b981;
}

.comparison-cell i.fa-times {
    color: #ef4444;
}
