/* ==============================================
   Modern Sophistication Special Sections
   ============================================== */

/* Life Change Impact Box - BALANCED IMPACT DESIGN */
.life-change-box {
    position: relative;
    background: linear-gradient(135deg, var(--primary-800), var(--accent-700));
    color: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    margin: var(--space-12) auto;
    max-width: 900px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.life-change-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: glow 4s ease-in-out infinite;
}

.life-change-box h4 {
    color: white;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
    text-align: center;
}

.life-change-box h4:first-child {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-8);
}

.life-change-box ul {
    position: relative;
    z-index: 1;
    list-style: none;
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto var(--space-6);
    text-align: left;
}

.life-change-box li {
    color: white;
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
    padding-left: var(--space-8);
    position: relative;
}

.life-change-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cta-300);
    font-weight: var(--font-bold);
    font-size: var(--text-xl);
}

.life-change-box p {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    text-align: center;
    margin-top: var(--space-8);
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Chance Now Section - CLEAN IMPACT */
.chance-now-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-black);
    text-align: center;
    margin: var(--space-16) 0 var(--space-8);
    color: var(--primary-800);
    position: relative;
}

.chance-statement {
    text-align: center;
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin: var(--space-4) 0;
    line-height: var(--leading-relaxed);
}

.chance-emphasis {
    display: block;
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin: var(--space-8) auto;
    padding: var(--space-6);
    max-width: 700px;
    background: linear-gradient(135deg, var(--accent-600), var(--primary-600));
    color: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.final-call {
    text-align: center;
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    margin: var(--space-8) auto var(--space-16);
    padding: var(--space-8);
    max-width: 700px;
    color: var(--text-primary);
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@keyframes glow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}



@media (max-width: 768px) {
    .life-change-box {
        padding: var(--space-8) var(--space-6);
    }
    
    .life-change-box h4 {
        font-size: var(--text-xl);
    }
    
    .life-change-box h4:first-child {
        font-size: var(--text-2xl);
    }
    
    .life-change-box li {
        font-size: var(--text-base);
    }
    
    .life-change-box p {
        font-size: var(--text-xl);
    }
    
    .chance-now-title {
        font-size: var(--text-3xl);
    }
    
    .chance-statement {
        font-size: var(--text-lg);
    }
    
    .chance-emphasis {
        font-size: var(--text-xl);
        padding: var(--space-4);
    }
    
    .final-call {
        font-size: var(--text-lg);
        padding: var(--space-6);
    }
    
    .main-message-box {
        padding: var(--space-8) var(--space-6);
    }
    
    .main-message-title {
        font-size: var(--text-2xl);
    }
    
    .main-message-content {
        font-size: var(--text-lg);
    }
    
    .truth-title {
        font-size: var(--text-xl);
    }
    
    .truth-statement {
        font-size: var(--text-xl);
    }
    
    .truth-emphasis {
        font-size: var(--text-3xl);
    }
}


/* ==============================================
   Information Hierarchy System
   ============================================== */

/* レベル1: 基本情報ボックス */
.info-box {
    background: var(--surface-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-500), var(--primary-400));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.info-box:hover {
    transform: translateY(-2px);
    border-color: var(--primary-300);
    box-shadow: var(--shadow-lg);
}

/* レベル2: 注意喚起ボックス */
.attention-box {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.attention-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* レベル4: アクションボックス */
.action-box {
    background: linear-gradient(135deg, var(--accent-50), var(--accent-100));
    border: 1px solid var(--accent-200);
    border-left: 4px solid var(--accent-600);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
}

/* 警告ボックス */
.warning {
    background: linear-gradient(135deg, var(--warning-50), #fef9c3);
    border: 1px solid var(--warning-300);
    border-left: 4px solid var(--warning-600);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    color: var(--warning-800);
}

/* ==============================================
   Pricing & Plan Components
   ============================================== */

/* プライシングテーブル - Modern Table Design */
.pricing-table {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    margin: var(--space-10) 0;
    border: 1px solid var(--border-light);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: var(--space-5) var(--space-6);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.pricing-table thead th {
    background: linear-gradient(to bottom, #fafbfc, #f7f9fb);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-table tbody tr:hover {
    background: var(--gray-50);
    transition: background 0.2s ease;
}

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

/* プランカード */
.plan-card {
    background: var(--surface-primary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-300);
}


.plan-header {
    margin-bottom: var(--space-6);
}

.plan-header h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.plan-subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.plan-price {
    margin-bottom: var(--space-6);
}

.price-amount {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--primary-700);
    display: block;
}

.price-amount .currency {
    font-size: var(--text-lg);
    vertical-align: top;
}

.price-amount .period {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    font-weight: var(--font-normal);
}

.price-note {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-2);
}

.plan-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-8);
}

.plan-features li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    position: relative;
    padding-left: var(--space-6);
}

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

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-600);
    font-weight: var(--font-bold);
}

/* モバイル用プランカード */
.mobile-plan-cards {
    display: none;
}

@media (max-width: 768px) {
    .pricing-table {
        display: none;
    }
    
    .mobile-plan-cards {
        display: block;
    }
    
    .plan-card {
        margin-bottom: var(--space-6);
    }
    
    .plan-card.featured {
        transform: none;
        order: -1;
    }
}

/* 価格セル - Premium Pricing Display */
.price-cell {
    text-align: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--border-light);
    font-weight: var(--font-semibold);
}

.price-cell.featured {
    background: linear-gradient(135deg, var(--accent-50), var(--accent-100));
    color: var(--accent-800);
    font-weight: var(--font-bold);
    position: relative;
}

.limited-pricing {
    position: relative;
    display: inline-block;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-tertiary);
    font-size: var(--text-sm);
    opacity: 0.7;
    margin-bottom: var(--space-2);
}

.limited-price {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--cta-red-600);
    margin-bottom: var(--space-2);
}

.limited-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cta-red-600), var(--cta-red-700));
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 10, 84, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==============================================
   CTA & Button Extensions
   ============================================== */

/* 最終CTAボタン - Ultra Premium Design */
.btn-cta-final {
    background: linear-gradient(135deg, #ff1744, #d50000);
    color: #ffffff;
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    padding: var(--space-6) var(--space-10);
    border-radius: 100px;
    box-shadow: 
        0 12px 40px rgba(255, 23, 68, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    letter-spacing: 0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-height: 72px;
}

.btn-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s ease;
}

.btn-cta-final::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--cta-red-500), var(--cta-red-800));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-cta-final:hover::before {
    left: 100%;
}

.btn-cta-final:hover::after {
    opacity: 1;
}

.btn-cta-final:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 23, 68, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.btn-cta-final:active {
    transform: translateY(-2px) scale(1.01);
}

/* 特大ボタン */
.btn-xlarge {
    padding: var(--space-6) var(--space-12);
    font-size: var(--text-xl);
    border-radius: var(--radius-xl);
}

/* ==============================================
   Hero Section Extensions
   ============================================== */

/* ヒーローボタングループ */
.hero-btn-group {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

/* ==============================================
   Profile & Instructor Section - Simplified Design
   ============================================== */

/* Profile Content Container */
.profile-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Story Box */
.profile-story-box {
    background: var(--surface-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
    position: relative;
    border-left: 4px solid var(--accent-500);
}

.profile-lead {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--accent-700);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.profile-story-box p {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.profile-result {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--success-700);
    margin: var(--space-6) 0;
    padding: var(--space-4);
    background: var(--success-50);
    border-radius: var(--radius-md);
    text-align: center;
}

/* Instructor Info */
.profile-instructor {
    background: var(--surface-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
}

.instructor-header {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.instructor-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--primary-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.name-reading {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    font-weight: var(--font-normal);
    margin-left: var(--space-2);
}

.instructor-title {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Achievements */
.profile-achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: var(--surface-secondary);
    border-radius: var(--radius-md);
}

.achievement-item {
    padding: 0;
}

.achievement-label {
    display: block;
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: var(--primary-700);
    margin-bottom: var(--space-3);
}

.achievement-item p {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-primary);
}

/* Profile Message */
.profile-message {
    text-align: center;
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
    border-radius: var(--radius-md);
    margin-top: var(--space-6);
}

.profile-message p {
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.message-emphasis {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--accent-700);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-story-box {
        padding: var(--space-6);
    }
    
    .profile-lead {
        font-size: var(--text-lg);
    }
    
    .instructor-header {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-image {
        margin-bottom: var(--space-4);
    }
    
    .profile-achievements {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

/* Hero and Button Group Mobile Styles */
@media (max-width: 768px) {
    .hero-btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-xlarge {
        padding: var(--space-4) var(--space-8);
        font-size: var(--text-lg);
    }
}

/* ==============================================
   Challenge Section Extensions
   ============================================== */

.challenge-content {
    padding: var(--space-4) 0;
}

.challenge-lead {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

/* ==============================================
   Center Alignment Utilities
   ============================================== */

.cta-center {
    text-align: center;
    margin: var(--space-8) 0;
}

.cta-center .btn {
    margin: var(--space-2);
}