/* Montage PC Page Specific Styles */

body {
    background: #000000;
}

/* Config Grid */
.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.config-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.config-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.config-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.config-price {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.config-card p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.config-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.config-card li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.config-card li:before {
    content: "✓ ";
    position: absolute;
    left: 0;
    color: #90ee90;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: #aaa;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: #aaa;
}
