#novix-pricing-calculator {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.calculator-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calculator-content {
    padding: 2rem;
}

.calculator-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #374151;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-header h3 {
    color: #374151;
    margin-bottom: 0.5rem;
}

.service-header p {
    color: #6b7280;
    margin: 0;
}

.slider-section {
    margin-bottom: 2rem;
}

.slider-section label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.slider-container {
    margin: 1rem 0;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #d1d5db;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.price-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0.5rem 0 1.5rem 0;
}

.cyber-essentials-section {
    margin-bottom: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-container label {
    font-weight: 500;
    color: #374151;
}

.cyber-tier {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 6px;
}

.cyber-features {
    margin-top: 1rem;
}

.cyber-features h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.75rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.features-list li {
    font-size: 0.75rem;
    color: #374151;
    display: flex;
    align-items: center;
}

.features-title {
    text-align: center;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1rem;
}

.features-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.features-grid li {
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    align-items: center;
}

.results-section {
    background: #f9fafb;
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
}

.results-section h2 {
    color: #374151;
    margin-bottom: 1.5rem;
}

.pricing-card {
    background: white;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.total-row {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.5rem;
    margin-top: 0.75rem;
}

.total-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #374151;
    font-size: 1.25rem;
}

.monthly-payment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.vat-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0.5rem 0 0 0;
}

.contact-form {
    background: white;
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.contact-form h3 {
    color: #374151;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.875rem;
    box-sizing: border-box;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

#submit-quote {
    width: 100%;
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

#submit-quote:hover {
    background: #2563eb;
}

#submit-quote:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

#initial-state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    color: #9ca3af;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .calculator-content,
    .results-section {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .features-list {
        grid-template-columns: 1fr;
    }
}