/* Functional Prototypes Page Specific Styles */

.prototype-hero-section {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, #1a4d5e 0%, #0f2938 100%);
    background-image: 
        linear-gradient(rgba(26, 77, 94, 0.75), rgba(15, 41, 56, 0.75)),
        url('images/pc-computer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    overflow: hidden;
}

.prototype-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.prototype-hero-text {
    color: #ffffff;
    margin-top: 40px;
}

.prototype-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}


.prototype-price {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    color: #ffffff;
    margin-bottom: 8px;
}

/* Prototype Content Section */
.prototype-content-section {
    background-color: #ffffff;
    padding: 80px 20px 100px;
}

.prototype-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a4d5e;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.2;
}

.prototype-intro {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

/* Prototype Feature Cards */
.prototype-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.prototype-feature-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prototype-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.prototype-feature-icon {
    width: 56px;
    height: 56px;
    color: #00ff88;
    margin-bottom: 24px;
}

.prototype-feature-icon svg,
.prototype-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prototype-feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a4d5e;
    margin-bottom: 16px;
}

.prototype-feature-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.prototype-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prototype-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #555;
}

/* Responsive Design for Prototypes Page */
@media (max-width: 768px) {
    .prototype-hero-title {
        font-size: 42px;
    }

    .prototype-price {
        font-size: 20px;
    }

    .prototype-headline {
        font-size: 36px;
    }

    .prototype-intro {
        font-size: 18px;
    }

    .prototype-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .prototype-feature-card {
        padding: 32px 24px;
    }

    .prototype-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .prototype-hero-section {
        min-height: 45vh;
        padding: 30px 20px;
    }

    .prototype-hero-title {
        font-size: 32px;
    }

    .prototype-price {
        font-size: 18px;
    }

    .prototype-content-section {
        padding: 60px 20px 80px;
    }

    .prototype-headline {
        font-size: 28px;
    }

    .prototype-hero-title {
        font-size: 28px;
    }
}

