.pricing-calculator {
    max-width: 800px;
    margin: 50px 0;
}

.pricing-section {
    margin-bottom: 60px;
}

.pricing-title-section {
    margin-bottom: 20px;
}
.pricing-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #1f2222;
    margin: 0;
    padding: 10px 10px;
    line-height: 20px;
    border-bottom: 2px solid #1f2222;
}
.pricing-section-sub-title {
    padding: 10px 10px;
    line-height: 20px;
    background-color: #EAF0F4;
    margin: 0
}

.mobile-tier-option,
.tier-option {
    background: #fff;
    border: 2px solid #EAF0F4;
    border-radius: 2px;
    padding: 0px 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.tier-option:hover {
    border-color: #1f2222;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-tier-option,
.tier-option.selected {
    border-color: #1f2222;
    background: rgba(124, 242, 164, 0.05);
}

.tier-option-header {
    background: #fff;
    border: 2px solid #EAF0F4;
    border-radius: 2px;
    padding: 0px 15px;
    margin-bottom: 10px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}
.tier-option-header:hover {
    border-color: #1f2222;
}
.tier-option-header.selected {
    background-color: #1f2222;
    border-color: #1f2222;
    color: #fff;
}

.tier-option-header h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 50px;
}

/* Mobile tier content visibility */
.mobile-tier-option {
    display: none;
}
.mobile-tier-option.active {
    display: block;
}

@media (max-width: 768px) {
    .tier-options.grid:not(.grid-cols-3-fixed) {
        grid-template-columns: 1fr !important;
    }
    .tier-option-header h3 {
        font-size: 16px;
        line-height: 40px;
    }
}

.tier-name {
    font-size: 15px;
    font-weight: 500;
    color: #1f2222;
    padding: 5px 0;
    margin: 10px 0;
    min-height: 36px;
    border-bottom: 2px solid #EAF0F4;
}

.applied-option {
    background: #fff;
    border: 2px solid #EAF0F4;
    border-radius: 2px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.applied-option:hover {
    border-color: #1f2222;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.applied-option.selected {
    border-color: #1f2222;
    background: rgba(124, 242, 164, 0.05);
}

@media (max-width: 768px) {
    .applied-options.grid:not(.grid-cols-3-fixed) {
        grid-template-columns: 1fr !important;
    }
}

.applied-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.applied-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid #EAF0F4;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.applied-checkbox.checked {
    border-color: #1f2222;
    background: #1f2222;
}

.checkmark {
    width: 14px;
    height: 14px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}

.applied-checkbox.checked .checkmark {
    opacity: 1;
}

.applied-title {
    font-size: 16px;
    font-weight: 500;
    color: #1f2222;
}

.applied-description {
    font-size: 14px;
    color: #1f2222;
    opacity: 0.8;
    line-height: 1.5;
    margin-left: 32px;
    flex: 1;
}

.pricing-total {
    position: sticky;
    top: 54px;
    z-index: 90;
    padding: 10px 20px;
    background: #1f2222;
}

.total-label {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.total-amount {
    font-size: 22px;
    font-weight: 600;
    color: #7cf2a4;
}

@media (max-width: 768px) {
    .pricing-total {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .total-label { font-size: 18px; }
    .total-amount { font-size: 18px; }
}