/* CSS for Pricing Section Redesign */

.pricing-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    /* Light background for contrast */
}

.pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.pricing-header {
    background-color: #2f4958;
    /* Theme dark color */
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    position: relative;
}

.pricing-speed {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.pricing-speed small {
    font-size: 1.2rem;
    font-weight: 400;
}

.pricing-bar {
    height: 10px;
    background-color: #e5b535;
    /* Gold/Yellow matching previous design */
}

.pricing-body {
    padding: 30px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-price {
    color: #2f4958;
    /* Dark Blue from previous design */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-price .currency {
    font-size: 1.5rem;
}

.pricing-price .period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.pricing-promo-text {
    color: #e5b535;
    /* Gold/Yellow */
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pricing-free-month {
    color: #e5b535;
    /* Gold/Yellow */
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    font-size: 0.95rem;
    color: #212529;
}

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

.pricing-features li i {
    color: #2f4958;
    /* Dark theme color for checks */
    margin-right: 10px;
    margin-top: 4px;
}

/* Custom Checkmark Icon */
.check-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232f4958' d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-right: 10px;
}

.pricing-cta {
    margin-top: auto;
}

.btn-pricing {
    background-color: #ec6707;
    /* Orange button matching btn__big-purple */
    color: #fff !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-pricing:hover {
    background-color: #d15600;
    color: #fff;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
    }
}