.hta-pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hta-pricing-card:hover {
    transform: translateY(-10px);
    border-color: #468c7d;
    box-shadow: 0 20px 40px rgba(3, 79, 117, 0.2);
}

.hta-pricing-card-featured {
    border: 1px solid #468c7d;
    background: rgba(70, 140, 125, 0.05);
}

/* --- Ribbon Styles --- */
.hta-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    z-index: 5;
}

.hta-ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 8px 0;
    background: linear-gradient(90deg, rgba(3,79,117,1) 0%, rgba(36,104,123,1) 50%, rgba(70,140,125,1) 100%);
    color: #fff;
    font-family: 'Tahoma', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* --- Header & Sub-heading --- */
.hta-pricing-card-header {
    margin-bottom: 25px;
}

.hta-pricing-card-type {
    display: block;
    font-family: 'Tecnico', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF; /* Changed to White for visibility on green BG */
    text-transform: uppercase;
    line-height: 1.2;
}

.hta-pricing-card-sub {
    display: block;
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.6; /* Faded effect as requested */
    margin-top: 4px;
}

/* --- Price --- */
.hta-pricing-card-price {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Tahoma', sans-serif;
}

.hta-vat {
    font-size: 14px;
    opacity: 0.4;
    margin-left: 8px;
    font-weight: normal;
}

/* --- Features --- */
.hta-pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 40px 0;
    flex-grow: 1;
}

.hta-pricing-card-features li {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.8;
    color: #FFFFFF;
}

/* --- Button --- */
.hta-btn-ticket {
    display: block;
    text-align: center;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #E6EDF1;
    background: linear-gradient(90deg, rgba(3,79,117,1) 0%, rgba(36,104,123,1) 50%, rgba(70,140,125,1) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s;
}

.hta-btn-ticket::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(70,140,125,1) 0%, rgba(36,104,123,1) 50%, rgba(3,79,117,1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hta-btn-ticket:hover::before {
    opacity: 1;
}