.pricing-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.pricing-header {
    margin-bottom: 40px;
}

.main-title {
    font-size: 3.5em;
    font-weight: 700;
    color: #101828;
    margin-bottom: 10px;
    background: -webkit-linear-gradient(45deg, #6c63ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1em;
    color: #667085;
    max-width: 500px;
    margin: 0 auto 40px;
}

.pricing-toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background-color: #f2f4f7;
    border-radius: 8px;
    padding: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 10px 25px;
    border: none;
    background-color: transparent;
    color: #667085;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.toggle-btn.active {
    background-color: #fff;
    color: #101828;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-plan {
    background-color: #fff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.pricing-plan.popular {
    border-top: 4px solid #6c63ff;
    position: relative;
}

.pricing-plan.current-plan {
    border: 2px solid #101828;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6c63ff;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-header .icon {
    font-size: 1.5em;
    margin-right: 10px;
    color: #6c63ff;
}

.plan-header h3 {
    display: inline-flex;
    align-items: center;
    font-size: 1.5em;
    color: #101828;
    margin: 0;
}

.plan-price {
    margin-bottom: 25px;
}

.plan-price .price {
    font-size: 3em;
    font-weight: 600;
    color: #101828;
    display: inline-flex;
    align-items: center;
    height: 1em; /* Set height to one line of text */
    vertical-align: middle;
}

.price .char-wrapper {
    display: inline-block;
    overflow: hidden;
    height: 1em;
    line-height: 1em;
}

.price .reel {
    display: inline-block;
}

.price .digit {
    display: block;
    height: 1em;
    line-height: 1em;
}

.plan-price .period {
    color: #667085;
}

.btn-subscribe {
    width: 100%;
    padding: 15px;
    border: 1px solid #6c63ff;
    background-color: #fff;
    color: #6c63ff;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-top: auto;
}

.btn-subscribe:hover {
    background-color: #6c63ff;
    color: #fff;
}

.pricing-plan.popular .btn-subscribe {
    background-color: #6c63ff;
    color: #fff;
}

.pricing-plan.popular .btn-subscribe:hover {
    background-color: #5a54d8;
}

.pricing-plan.current-plan .btn-subscribe {
    background-color: #101828;
    color: #fff;
    cursor: default;
}

.pricing-plan.current-plan .btn-subscribe:hover {
    background-color: #101828;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    color: #475467;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features .fa-check {
    color: #22c55e;
    margin-right: 10px;
}
.discount-badge {
    background-color: #ff6b6b;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    margin-left: 8px;
}

.savings-container {
    margin-top: 10px;
    height: 20px;
}

.savings {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9em;
}