.pricing {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
}

.pricing h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.pricing p {
    color: #64748b;
    margin-bottom: 20px;
}

.countdown {
    margin: 0 auto 40px auto;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    font-size: 20px;
    color: #b91c1c;
    font-weight: 600;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.billing-toggle .toggle-label {
    font-weight: 500;
    color: #0f172a;
}

.billing-toggle small {
    color: #64748b;
    font-size: 12px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #3b82f6;
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    padding: 40px 30px;
    flex: 1 1 300px;
    max-width: 320px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.2);
}

.plan.highlight {
    background: #eff6ff;
    border: 2px solid #3b82f6;
    transform: scale(1.03);
}

.plan h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #0f172a;
}

.plan .price {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
    color: #3b82f6;
}

.plan .old-price {
    color: #94a3b8;
    font-size: 20px;
    margin-right: 4px;
}

.plan .price-term {
    font-size: 16px;
    color: #64748b;
}

.plan .discount {
    font-size: 18px;
    color: #ef4444;
    font-weight: 600;
}

.plan .note {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #64748b;
    text-align: left;
}

.plan li {
    margin: 8px 0;
}

.plan button {
    width: 100%;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.plan button:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .plan.highlight {
        transform: scale(1.02);
    }
}

/* 🎨 Currency Dropdown Styles */
.currency-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #1e293b;
    gap: 8px;
}

.currency-selector label {
    font-weight: 500;
    color: #475569;
}

.currency-selector select {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    color: #1e293b;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.currency-selector select:hover {
    border-color: #1e88e5;
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.15);
}