:root {
    --dark-bg: #111111;
    --basic-accent: #006d77;
    --premium-accent: #006d77;
    --enterprise-accent: #006d77;
    --premium-highlight: #006d77;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --card-bg: #222222;
}

body {
    background-color: var(--dark-bg);
    font-family: Arial, sans-serif;
    color: var(--text-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-category {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-white);
}

.basic .plan-category {
    color: var(--text-white);
}

.premium .plan-category {
    color: var(--text-white);
}

.enterprise .plan-category {
    color: var(--text-white);
}

.plan-price h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-white);
}

.basic .plan-price h2 {
    color: var(--text-white);
}

.premium .plan-price h2 {
    color: var(--text-white);
}

.enterprise .plan-price h2 {
    color: var(--text-white);
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-grey);
}

.price-info {
    margin-top: 0.5rem;
}

.price-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-grey);
}

/* Features */
.feature-group {
    margin-bottom: 2rem;
}

.feature-group h6 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-grey);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: #27ae60;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.basic .feature-list li::before {
    background-color: var(--basic-accent);
}

.premium .feature-list li::before {
    background-color: var(--premium-accent);
}

.enterprise .feature-list li::before {
    background-color: var(--enterprise-accent);
}

/* Premium highlight */
.premium {
    border: 2px solid var(--premium-highlight);
}

/* Disclaimer */
.disclaimer {
    opacity: 0.7;
}

/* Überschrift für Preisliste */
.preisliste-title {
    font-size: 2.2rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .pricing-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .preisliste-title {
        font-size: 2.8rem;
    }
}

/* Pricing Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
    margin-left: 1rem;
}

.pricing-toggle-text {
    color: var(--text-grey);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.pricing-toggle-text.active {
    color: var(--text-white);
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    margin: 0 0.5rem;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--premium-highlight);
    transition: .4s;
}

input:checked + .slider {
    background-color: rgba(255, 255, 255, 0.1);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--premium-highlight);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
} 