/* ================================
   追加セクションのスタイル
   ================================ */

/* ヒーローセクション - ベネフィット */
.hero-benefits {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.benefits-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    font-size: 16px;
    color: var(--white);
    padding-left: 0;
    line-height: 1.6;
}

.btn-large {
    font-size: 18px;
    padding: 20px 50px;
}

/* ================================
   ターゲットオーディエンスセクション
   ================================ */
.target-audience {
    background: var(--light-bg);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.target-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.target-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(230, 126, 34, 0.15);
    transform: translateY(-5px);
}

.target-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.target-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.target-card p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
}

.target-cta {
    text-align: center;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
}

.target-message {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* ================================
   ビフォーアフターセクション
   ================================ */
.before-after {
    background: var(--white);
}

.ba-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.ba-item {
    text-align: center;
}

.ba-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}

.ba-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.ba-label-after {
    background: var(--gradient-accent);
}

.ba-description {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.ba-description h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ba-before *,
.ba-after * {
    list-style: none !important;
    list-style-type: none !important;
}

.ba-before *::before,
.ba-before *::after,
.ba-before *::marker,
.ba-after *::before,
.ba-after *::after,
.ba-after *::marker {
    content: none !important;
    display: none !important;
}

.ba-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ba-list p {
    font-size: 15px;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.6;
}

.ba-arrow {
    font-size: 48px;
    color: var(--secondary-color);
    font-weight: 900;
}

.ba-message {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.ba-quote {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-display);
    margin-bottom: 20px;
}

.ba-text {
    font-size: 20px;
    line-height: 1.8;
}

/* ================================
   実績セクション
   ================================ */
.achievements {
    background: var(--light-bg);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.achievement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid var(--gray-light);
}

.achievement-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(44, 95, 141, 0.15);
    transform: translateY(-5px);
}

.achievement-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.achievement-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.achievement-card p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.7;
}

.achievement-message {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.6;
}

/* ================================
   サービスCTA
   ================================ */
.service-cta {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
}

.service-cta-message {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-cta .btn-primary {
    background: var(--gradient-accent);
}

/* ================================
   レスポンシブ - 追加セクション
   ================================ */
@media (max-width: 1024px) {
    .ba-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ba-arrow {
        transform: rotate(90deg);
        font-size: 36px;
    }
    
    .target-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .achievement-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-benefits {
        padding: 25px;
    }
    
    .benefits-title {
        font-size: 18px;
    }
    
    .benefits-list li {
        font-size: 14px;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .target-icon {
        font-size: 50px;
    }
    
    .target-message {
        font-size: 20px;
    }
    
    .ba-img {
        max-width: 300px;
    }
    
    .ba-quote {
        font-size: 28px;
    }
    
    .ba-text {
        font-size: 16px;
    }
    
    .achievement-number {
        font-size: 36px;
    }
    
    .service-cta-message {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .btn-large {
        font-size: 16px;
        padding: 18px 35px;
    }
    
    .target-cta {
        padding: 30px 20px;
    }
    
    .ba-message,
    .service-cta {
        padding: 30px 20px;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}