.ks740-main {
    min-height: calc(100vh - 200px);
}

.ks740-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.ks740-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.ks740-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ks740-subtitle {
    font-size: 1.3rem;
    color: #aaa;
    line-height: 1.6;
}

.ks740-section {
    padding: 4rem 2rem;
}

.ks740-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.hardware-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card-large {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
}

.feature-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.software-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.software-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.software-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.software-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.software-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.cost-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cost-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cost-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
}

.cost-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.cost-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.specs-table {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.spec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background: #f8f9fa;
}

.spec-label {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.spec-value {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ks740-title {
        font-size: 2rem;
    }

    .ks740-subtitle {
        font-size: 1rem;
    }

    .ks740-hero {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hardware-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card-large {
        padding: 1.5rem;
    }

    .feature-header {
        flex-direction: column;
        text-align: center;
    }

    .software-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cost-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cost-card {
        padding: 2rem;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .spec-label {
        font-size: 1rem;
    }

    .spec-value {
        font-size: 0.95rem;
    }
}