@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', 'Roboto', sans-serif;
}

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

/* Content Section */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Panel - Benefits */
.benefits-panel {
    padding: 40px 40px;
    background: white;
    border-right: 1px solid #e5e5e5;
}

.benefits-intro {
    margin-bottom: 20px;
}

.benefits-intro h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.benefits-intro p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.benefit-item {
    border-top: 1px solid #e5e5e5;
    padding: 0;
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
}

.benefit-header h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 10px 0;
}

.benefit-toggle {
    font-size: 20px;
    color: #c41e3a;
    transition: transform 0.3s ease;
}

.benefit-item.active .benefit-toggle {
    transform: rotate(45deg);
}

.benefit-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.benefit-item.active .benefit-content {
    max-height: 500px;
    padding-bottom: 5px;
}

/* Right Panel - Hero Image */
.hero-image-panel {
    position: relative;
    min-height: 600px;
    background: url('../img/hero.png') center center / cover no-repeat;
    background-color: #8b6f47;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    padding: 30px;
}

/* Pricing Section */
.pricing-section {
    background: white;
    padding: 80px 40px;
    text-align: center;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.plan-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-card:hover {
    border-color: #c41e3a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.1);
}

.plan-card.selected {
    border-color: #c41e3a;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.plan-radio {
    width: 24px;
    height: 24px;
    margin: 0 auto 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
}

.plan-card.selected .plan-radio {
    border-color: #c41e3a;
}

.plan-card.selected .plan-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #c41e3a;
    border-radius: 50%;
}

.plan-duration {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 10px;
}

.plan-discount {
    font-size: 14px;
    color: #e74c3c;
    font-weight: 500;
}

/* Payment Form */
.payment-section {
    background: #f8f6f3;
    padding: 60px 40px 80px;
}

.payment-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.payment-form {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #666;
    margin-bottom: 8px;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-info {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}

.form-info a {
    color: #c41e3a;
    text-decoration: none;
}

.expiry-date {
    font-size: 12px;
    color: #666;
    margin: 25px 0 20px;
    text-align: center;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-section {
        grid-template-columns: 1fr;
    }

    .benefits-panel {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .hero-image-panel {
        min-height: 400px;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .benefits-panel,
    .pricing-section,
    .payment-section {
        padding: 40px 20px;
    }

    .payment-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .plan-price {
        font-size: 36px;
    }
}