/* ===========================================
   PRICING — Price cards, grid, single layout
   =========================================== */

.pricing {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.pricing-subtitle {
    text-align: center;
    font-size: 17px;
    color: #c0b8a8;
    margin-top: -24px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.05);
}

.price-card-popular {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.06);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.price-card-popular::before {
    background: linear-gradient(90deg, #d4af37, #b59567);
    height: 3px;
}

.price-card-popular:hover {
    transform: translateY(-8px) scale(1.03);
}

.price-badge {
    position: absolute;
    top: 20px; right: -35px;
    background: linear-gradient(135deg, #d4af37, #b59567);
    color: #1a1a1a;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.price-header { margin-bottom: 30px; }

.price-title {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-value { font-size: 48px; color: #f5f5f5; font-weight: bold; }
.price-currency { font-size: 24px; color: #d4af37; }

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    color: #c0b8a8;
    font-size: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding-left: 25px;
}

.price-features li:last-child { border-bottom: none; }

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

.pricing-note p { color: #999; font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.pricing-note .btn { margin-top: 10px; }

/* --- Single card horizontal layout (whitening) --- */
.pricing-single { max-width: 700px; margin: 0 auto 40px; }

.pricing-single .price-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 40px;
    text-align: left;
    padding: 45px 50px;
}

.pricing-single .price-header  { grid-column: 1; grid-row: 1; margin-bottom: 15px; }
.pricing-single .price-features { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.pricing-single .price-amount  { justify-content: flex-start; }
.pricing-single .btn           { grid-column: 2; grid-row: 1 / 3; align-self: center; }
