/**
 * Modern Price Section Styles
 * total-boost.comスタイルをベースに現在のデザインに適応
 */

/* Price Section */
.price-modern {
    padding: 100px 0;
    background: #f8f9fa;
}

.price-modern .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.price-modern .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.price-modern .section-label {
    display: inline-block;
    color: #667eea;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.price-modern .section-title-modern {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Price Cards Grid */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Price Card */
.price-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Price Header */
.price-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.price-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Perfect Beauty Title Special Styling */
.perfect-beauty-title {
    display: block;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .perfect-beauty-title span:first-child {
        margin-left: 60px;
        text-align: left !important;
    }
    
    .perfect-beauty-title span:last-child {
        margin-right: 60px;
        text-align: right !important;
    }
}

@media (max-width: 480px) {
    .perfect-beauty-title span:first-child {
        margin-left: 80px;
        text-align: left !important;
    }
    
    .perfect-beauty-title span:last-child {
        margin-right: 80px;
        text-align: right !important;
    }
}

/* Price Amount */
.price-amount {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.price-amount:last-child {
    margin-bottom: 0;
}

.price-number {
    font-family: 'Didot', 'Bodoni MT', 'Noto Serif Display', 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #D4A574;
    letter-spacing: 0.05em;
}

.price-number-small {
    font-family: 'Didot', 'Bodoni MT', 'Noto Serif Display', 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.03em;
}

.price-term {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Price Features */
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.price-features li {
    padding: 12px 0;
    color: #666;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

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

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

/* Modern Button */
.btn-modern {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn-primary-modern {
    background: #D4A574;
    color: #fff !important;
    border: 1px solid #D4A574;
}

.btn-primary-modern:hover {
    background: #fff;
    color: #D4A574 !important;
    border-color: #D4A574;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .price-modern {
        padding: 60px 0;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .price-modern .section-title-modern {
        font-size: 1.8rem;
    }
    
    .price-header h3 {
        font-size: 1.1rem;
    }
    
    .price-number {
        font-size: 1.8rem;
    }
    
    .price-number-small {
        font-size: 1.1rem;
    }
    
    .price-card {
        padding: 30px 20px;
    }
}

/* Animation Delays */
.price-card:nth-child(1) {
    animation-delay: 0.1s;
}

.price-card:nth-child(2) {
    animation-delay: 0.2s;
}

.price-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}