/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/

/*body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
    padding: 2rem;
}*/

/*.container {
    max-width: 1200px;
    margin: 0 auto;
}*/

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.recommended {
    border: 4px solid #22d3ee;
    box-shadow: 0 4px 6px -1px rgba(34, 211, 238, 0.1), 0 2px 4px -1px rgba(34, 211, 238, 0.06);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22d3ee;
    color: black;
    padding: 0.35rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-tag {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.save-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.75rem;
}

.original-price {
    color: #6b7280;
    text-decoration: line-through;
}

.price {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.amount {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.period {
    color: #6b7280;
    font-size: 0.95rem;
}

.term-info {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.buy-now {
    width: 100%;
    background: black;
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.75rem;
    transition: all 0.2s ease;
}

.buy-now:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.features {
    list-style: none;
}

.features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.875rem;
    color: #374151;
    font-size: 0.925rem;
   /* line-height: 0.0;*/
}

.features li .fa-check {
    color: #34d399;
    margin-right: 0.75rem;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.features li .info-icon {
    color: #9ca3af;
    margin-left: 0.375rem;
    font-size: 0.75rem;
    cursor: help;
    margin-top: 0.25rem;
}

.features li sup {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.hidden-features {
    display: none;
}

    .hidden-features.show {
        display: block;
    }



.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(26 120 179);
}

    .card:hover {
        transform: scale(1.03); /* expands ~10px on all sides depending on size */
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        z-index: 1;
    }

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    body {
        padding: 1rem;
    }
}

@media(min-width: 321px) and (max-width: 479.95px) {
    .amount {
        font-size: 1.9rem;
        font-weight: 700;
        letter-spacing: -0.025em;
    }
}
