/* Software-specific styles */
body {
    background-color: #0a0e12;
}

.navbar {
    background: rgba(10, 14, 18, 0.95);
}

.hero-section {
    background: linear-gradient(135deg, rgba(16, 24, 48, 0.85), rgba(38, 57, 77, 0.85)),
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600') center/cover;
}

/* USP Strip */
.usp-strip {
    background: rgba(16, 24, 48, 0.95);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.usp-strip p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

.usp-strip .highlight {
    font-weight: 400;
    opacity: 1;
    border-bottom: 2px solid #ff8c32;
    padding-bottom: 1px;
    color: #ff8c32;
}

/* Product Section */
.product-section {
    padding: 120px 0;
    position: relative;
}

.product-section.dark {
    background: #0a0e12;
}

.product-section.light {
    background: #12161c;
}

.product-header {
    text-align: center;
    margin-bottom: 80px;
}

.product-header h2 {
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 30px;
}

.product-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff8c32, transparent);
}

.product-header p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 900px;
    margin: 0 auto;
}

.product-features {
    margin-top: 60px;
}

.feature-item {
    margin-bottom: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.feature-item p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7;
    opacity: 0.8;
    margin: 0;
}

.cta-button {
    margin-top: 50px;
    text-align: center;
}

/* Page-specific backgrounds */
.faq-section {
    background: #12161c;
}

.contact-section {
    background: #0a0e12;
}

.footer {
    background: #050709;
}

/* Responsive - software specific */
@media (max-width: 768px) {
    .usp-strip p {
        font-size: 1rem;
    }

    .product-header h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }
}
