/* PRICING WRAPPER */
.hms-pricing-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* CARD */
.hms-price-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.3s ease;
}

.hms-price-card:hover {
    transform: translateY(-5px);
}

/* POPULAR */
.hms-popular {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

/* BADGE */
.hms-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
}

/* PRICE */
.hms-price {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.hms-small {
    color: #777;
    font-size: 14px;
}

/* SAVE TEXT */
.hms-save {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* FEATURES */
.hms-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hms-feature-list li {
    margin-bottom: 10px;
}

.hms-disabled {
    color: #aaa;
}

/* BUTTON FULL */
.hms-full-btn {
    width: 100%;
    text-align: center;
}

/* NOTES */
.hms-note {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    color: #777;
}

.hms-trust {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.hms-compare {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.hms-compare th, .hms-compare td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.hms-compare th {
    background: #f9fafb;
}

.hms-compare tr:hover {
    background: #f9fafb;
}

.hms-limit {
    font-size: 13px;
    color: #888;
}

.hms-price-card:not(.hms-popular) {
    opacity: 0.9;
    background: #fafafa;
}

.hms-compare {
    margin-top: 60px;
}

.hms-compare tr:nth-child(even) {
    background: #fafafa;
}

.hms-compare td:first-child {
    text-align: left;
    font-weight: 500;
}

.hms-upgrade-note {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
}

.hms-price-card {
    transition: all 0.3s ease;
}

.hms-price-card:hover {
    transform: translateY(-6px);
}

/* BADGE */
.hms-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* PRICE */
.hms-price {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 20px;
}

.hms-price span {
    font-size: 14px;
    color: #666;
}

/* FEATURES */
.hms-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.hms-feature-list li {
    margin-bottom: 10px;
}

/* DISABLED FEATURES */
.hms-disabled {
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hms-popular {
        transform: none;
    }
}

/* TESTIMONIAL SECTION */
.hms-testimonials {
    background: #f9fafb;
}

/* GRID */
.hms-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.hms-testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.hms-testimonial-card:hover {
    transform: translateY(-5px);
}

/* TEXT */
.hms-testimonial-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* USER */
.hms-testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* AVATAR */
.hms-avatar {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NAME */
.hms-testimonial-user strong {
    display: block;
    color: #111;
}

/* ROLE */
.hms-testimonial-user span {
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hms-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ SECTION */
.hms-faq {
    background: #fff;
}

/* CONTAINER */
.hms-faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

/* ITEM */
.hms-faq-item {
    border-bottom: 1px solid #eee;
}

/* QUESTION */
.hms-faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}

/* ICON */
.hms-faq-question span {
    font-size: 20px;
    color: #2563eb;
}

/* ANSWER */
.hms-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.hms-faq-answer p {
    padding-bottom: 15px;
    color: #555;
}

/* ACTIVE */
.hms-faq-item.active .hms-faq-answer {
    max-height: 200px;
}