.angie_4dcc4d82-pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 30px 10px;
}

.angie_4dcc4d82-pricing-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    padding: 30px 30px; /* Reduced top padding */
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #f0f0f0;
}

/* Layout Alternates */
.layout-minimal .angie_4dcc4d82-pricing-card {
    border: none;
    box-shadow: none;
    border-top: 5px solid #eee;
    border-radius: 0;
    padding: 30px 20px;
}
.layout-minimal .angie_4dcc4d82-pricing-card.highlight {
    border: none;
    border-top: 5px solid #b7d31a; /* Replaced by primary color dynamically */
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.layout-minimal .angie_4dcc4d82-header {
    background: #fcfcfc;
    margin: -30px -20px 30px -20px;
    padding: 30px 20px 20px;
    border-bottom: 1px solid #eee;
}
.layout-minimal .angie_4dcc4d82-pricing-card.highlight .angie_4dcc4d82-header {
    background: #f9fcfa;
}

.layout-bold .angie_4dcc4d82-pricing-card {
    border-radius: 20px;
    border: none;
    background: #f8f9fa;
}
.layout-bold .angie_4dcc4d82-pricing-card.highlight {
    background: #b7d31a; /* Replaced by primary color dynamically */
    color: #111;
}

/* Dark Theme overrides */
.theme-dark .angie_4dcc4d82-pricing-card {
    background: #555555; /* Fixed #555555 background */
    border-color: #444;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.theme-dark .angie_4dcc4d82-title { color: #fff; }
.theme-dark .angie_4dcc4d82-subtitle { color: #eee; }
.theme-dark .angie_4dcc4d82-price { color: #fff; }
.theme-dark .angie_4dcc4d82-price-old { color: #ccc; }
.theme-dark .angie_4dcc4d82-features-container ul li { 
    color: #f5f5f5; 
    border-bottom-color: #444; 
}
.theme-dark.layout-minimal .angie_4dcc4d82-pricing-card { border-top-color: #444; }
.theme-dark.layout-minimal .angie_4dcc4d82-header { background: #4a4a4a; border-bottom-color: #444; }
.theme-dark.layout-minimal .angie_4dcc4d82-pricing-card.highlight .angie_4dcc4d82-header { background: #4d4d4d; }
.theme-dark.layout-bold .angie_4dcc4d82-pricing-card:not(.highlight) { background: #555555; }

/* Interactions */
.angie_4dcc4d82-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.theme-dark .angie_4dcc4d82-pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.angie_4dcc4d82-pricing-card.highlight {
    border: 2px solid #b7d31a; /* Default highlight border */
    transform: scale(1.05);
    z-index: 2;
}

.angie_4dcc4d82-pricing-card.highlight:hover {
    transform: scale(1.05) translateY(-8px);
}

.angie_4dcc4d82-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    color: #111;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.angie_4dcc4d82-header {
    text-align: center;
    margin-bottom: 25px; 
}

.angie_4dcc4d82-title {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.angie_4dcc4d82-subtitle {
    font-size: 1.2rem; 
    color: #666;
    margin-bottom: 20px;
    min-height: 24px;
}

.angie_4dcc4d82-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0;
}

.angie_4dcc4d82-price-old {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: -5px;
    font-weight: 600;
    opacity: 0.7;
}

.angie_4dcc4d82-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: #111;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    letter-spacing: -2px;
}

.angie_4dcc4d82-currency {
    font-size: 1.8rem;
    margin-top: 8px;
    margin-right: 8px;
    font-weight: 700;
    letter-spacing: 0;
    color: inherit;
}

.angie_4dcc4d82-features-container {
    flex-grow: 1;
    margin-bottom: 30px;
}

.angie_4dcc4d82-features-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.angie_4dcc4d82-features-container ul li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start; /* Better alignment on wrap */
    font-size: 1.3rem; /* Significantly increased text size */
    color: #444;
    line-height: 1.5;
}

.angie_4dcc4d82-features-container ul li:last-child {
    border-bottom: none;
}

.angie_4dcc4d82-features-container i {
    margin-right: 15px;
    margin-top: 4px;
    font-size: 1.4rem; /* Increased icon size */
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.angie_4dcc4d82-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #333333; 
    color: white;
    padding: 16px 20px;
    border-radius: 50px; /* Pill shape default */
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    white-space: nowrap; /* Forces one line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.angie_4dcc4d82-button:hover {
    filter: brightness(0.85);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .angie_4dcc4d82-pricing-card.highlight {
        transform: scale(1);
    }
    .angie_4dcc4d82-pricing-card.highlight:hover {
        transform: translateY(-8px);
    }
    .angie_4dcc4d82-title { font-size: 2rem; }
    .angie_4dcc4d82-price { font-size: 4rem; }
}

@media (max-width: 767px) {
    .angie_4dcc4d82-pricing-card {
        max-width: 100%;
        width: 100%;
    }
}