/* ============================================
   Pricing Page Styles
   ============================================ */
.pricing-container {
    max-width: 700px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
    transform: translateX(-4px);
}

.back-link::before {
    content: "←";
    margin-right: 8px;
    font-size: 18px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
}

.pricing-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pricing-effective {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.pricing-update-date {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.pricing-intro {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 2px solid transparent;
    line-height: 1.85;
    font-size: 15px;
    color: #444;
}

.pricing-intro p {
    margin: 0 0 12px;
}

.pricing-intro p:last-child {
    margin-bottom: 0;
}

.pricing-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff8e6;
    border-left: 4px solid #f0b429;
    border-radius: 0 12px 12px 0;
    padding: 14px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #5c4a1a;
    line-height: 1.7;
}

.pricing-notice-icon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.4;
}

.pricing-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #667eea;
}

.pricing-table-wrap {
    overflow-x: auto;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing-table caption {
    caption-side: bottom;
    text-align: left;
    font-size: 12px;
    color: #888;
    padding-top: 10px;
    line-height: 1.6;
}

.pricing-table th,
.pricing-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.pricing-table thead th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: #f8f9ff;
}

.pricing-table .price-cell {
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.pricing-notes {
    margin-bottom: 24px;
}

.pricing-notes ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.pricing-notes li {
    margin-bottom: 6px;
}

.pricing-legacy {
    background: #f4f4f5;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.pricing-legacy strong {
    color: #333;
}

.info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.info-box-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.info-box-title {
    font-size: 18px;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 8px;
}

.info-box-text {
    font-size: 14px;
    color: #1565c0;
    line-height: 1.6;
    margin: 0;
}

.practice-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.practice-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.back-to-home {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
}

@media (max-width: 640px) {
    .pricing-header h1 {
        font-size: 24px;
    }

    .pricing-intro {
        padding: 18px;
        font-size: 14px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px;
        font-size: 13px;
    }
}
