/* ========================================
   企業向けSaaSポイント ヒーローセクション
   ======================================== */

.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-icon {
    font-size: 16px;
    animation: pulse 1.5s infinite;
}

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

.badge-new {
    background: #ef4444;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.subtitle-highlight {
    color: #3b82f6;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin: 0;
    font-family: 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'Yu Gothic UI', 'MS PGothic', sans-serif;
}

.hero-title .highlight {
    color: #3b82f6;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

/* ポイント要素 */
.hero-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.point-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.point-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.point-item:hover::before {
    transform: scaleY(1);
}

/* 信頼性バッジ */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 500;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: #059669;
}

.point-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.point-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.point-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.point-description {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

.point-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 60px;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.metric-label {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 2px;
    text-align: center;
}

/* 統計情報 */
.hero-stats-row {
    display: flex;
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 5px;
    font-family: 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'Yu Gothic UI', 'MS PGothic', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* CTAボタン */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid;
    text-align: center;
    min-width: 200px;
}

.btn-primary-large {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: #1d4ed8;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary-large {
    background: white;
    color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary-large:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary-large span,
.btn-secondary-large span {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.btn-primary-large small,
.btn-secondary-large small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

/* ダッシュボードモックアップ */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.mockup-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mockup-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.mockup-title {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.mockup-content {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 140px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 20px 0;
}

.sidebar-item {
    padding: 12px 20px;
    font-size: 0.85rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.sidebar-icon {
    font-size: 16px;
}

.sidebar-badge {
    background: #ef4444;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: auto;
}

.sidebar-badge.new {
    background: #8b5cf6;
    animation: pulse-badge 2s infinite;
}

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

.sidebar-item:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.sidebar-item.active {
    background: #e0f2fe;
    color: #0369a1;
    border-left-color: #3b82f6;
    font-weight: 600;
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e2e8f0;
}

.card-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-trend {
    color: #059669;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.8rem;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-dot.warning {
    background: #f59e0b;
}

.notification-time {
    margin-left: auto;
    font-size: 0.7rem;
    color: #94a3b8;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.card-stats {
    font-size: 0.8rem;
    color: #64748b;
}

.ai-status {
    font-size: 0.85rem;
    color: #8b5cf6;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 6px;
    display: inline-block;
}

.ai-status.processing {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-top: 2px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ai-progress {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ai-step {
    font-size: 0.75rem;
    color: #64748b;
    padding: 2px 0;
}

.ai-step.completed {
    color: #059669;
}

.ai-step.active {
    color: #8b5cf6;
    font-weight: 600;
}

.ai-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 顧客ロゴ */
.customer-logos {
    margin-top: 30px;
    text-align: center;
}

.logos-title {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
    font-weight: 500;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-placeholder {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* フローティング要素 */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-card.security {
    top: 20%;
    right: -10px;
    animation-delay: 0s;
}

.floating-card.performance {
    top: 60%;
    left: -20px;
    animation-delay: 1s;
}

.floating-card.cloud {
    bottom: 20%;
    right: 10px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    font-size: 20px;
}

.floating-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.floating-desc {
    font-size: 0.7rem;
    color: #64748b;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats-row {
        gap: 20px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .customer-logos {
        margin-top: 20px;
    }
    
    .logos-grid {
        gap: 10px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .dashboard-mockup {
        max-width: 400px;
    }
    
    .mockup-content {
        min-height: 250px;
    }
    
    .mockup-sidebar {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-points {
        gap: 15px;
    }
    
    .point-item {
        padding: 12px 15px;
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 10px;
    }
    
    .point-metric {
        min-width: 50px;
        padding: 6px 10px;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .customer-logos {
        margin-top: 15px;
    }
    
    .logos-grid {
        gap: 8px;
    }
    
    .logo-placeholder {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .dashboard-mockup {
        max-width: 320px;
    }
    
    .mockup-content {
        min-height: 200px;
    }
    
    .mockup-sidebar {
        width: 100px;
    }
    
    .sidebar-item {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .mockup-main {
        padding: 15px;
    }
}