/**
 * Hero Section G7 Enhancement Styles
 * v8.0 - ファーストビューにG7実績を戦略的に追加
 */

/* ===========================
   1. Badge Enhancement
   =========================== */

.hero-badge-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    }
}

.badge-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 700;
}

/* ===========================
   2. Authority Note
   =========================== */

.hero-authority-note {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.03em;
    line-height: 1.6;
    text-align: center;
}

/* ===========================
   3. Stats Highlight
   =========================== */

.stat-highlight {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.15) 0%, rgba(253, 230, 138, 0.15) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24 !important;
    font-weight: 700;
}

.stat-highlight strong {
    color: #fde68a;
}

/* ===========================
   4. Responsive Adjustments
   =========================== */

/* タブレット（768px以下） */
@media (max-width: 768px) {
    .badge-highlight {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .hero-authority-note {
        font-size: 14px;
        margin-top: 6px;
    }
    
    .stat-highlight {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* モバイル（576px以下） */
@media (max-width: 576px) {
    .hero-badge-simple {
        gap: 8px;
    }
    
    .badge-highlight {
        font-size: 12px;
        padding: 5px 12px;
        width: 100%;
        text-align: center;
    }
    
    .badge-divider {
        display: none;
    }
    
    .hero-authority-note {
        font-size: 13px;
        display: block;
        margin-top: 8px;
    }
    
    .stat-highlight {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* ===========================
   5. Accessibility
   =========================== */

@media (prefers-reduced-motion: reduce) {
    .badge-highlight {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .badge-highlight {
        border-width: 3px;
    }
    
    .hero-authority-note {
        text-shadow: none;
        font-weight: 700;
    }
}
