/* CoreAX Hero Section Styling - 先進的・高級感AIテーマ */

.coreax-hero-section {
    background: linear-gradient(135deg, 
        #1C1C28 0%,          /* ダークグレーベース */
        #2D3E50 25%,         /* ブルーグレー */
        #34495E 50%,         /* ミディアムグレー */
        #2D3E50 75%,         /* ブルーグレー */
        #1C1C28 100%         /* ダークグレーベース */
    );
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    /* AI風のベースカラー */
    background-color: #1C1C28;
    border-bottom: 1px solid rgba(58, 141, 255, 0.2);
}

/* 先進的なAIライト・エフェクト */
.coreax-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            transparent 40%, 
            rgba(58, 141, 255, 0.08) 45%,     /* アクセントブルー */
            rgba(221, 234, 247, 0.12) 50%,    /* ソフトライトブルー */
            rgba(58, 141, 255, 0.08) 55%, 
            transparent 60%
        );
    animation: lightSweep 12s ease-in-out infinite;
    pointer-events: none;
}

/* 高級感AI風グロー・エフェクト */
.coreax-hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, 
            rgba(58, 141, 255, 0.12) 0%,     /* アクセントブルー中心 */
            rgba(45, 62, 80, 0.08) 30%,      /* ブルーグレー */
            rgba(28, 28, 40, 0.05) 60%,      /* ダークベース */
            transparent 100%
        );
    animation: blueGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
}

/* 控えめな光の粒子エフェクト */
.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tech-particles::before,
.tech-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(58, 141, 255, 0.4);     /* アクセントブルー粒子 */
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(58, 141, 255, 0.6);
    animation: float 6s ease-in-out infinite;
}

.tech-particles::before {
    top: 20%;
    left: 15%;
    animation-delay: -2s;
}

.tech-particles::after {
    top: 70%;
    right: 20%;
    animation-delay: -4s;
}

/* CoreAX タイトル強調スタイル - AI先進テーマ */
.coreax-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #DDEAF7;                          /* ソフトライトブルー */
    text-shadow: 
        0 2px 4px rgba(28, 28, 40, 0.4),
        0 4px 8px rgba(58, 141, 255, 0.3),   /* アクセントブルー影 */
        0 0 12px rgba(58, 141, 255, 0.2);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

/* サブタイトルスタイル - AI高級感テーマ */
.coreax-subtitle {
    font-size: 1.25rem;
    color: rgba(221, 234, 247, 0.9);         /* ソフトライトブルー */
    text-shadow: 
        0 1px 2px rgba(28, 28, 40, 0.3),
        0 0 6px rgba(58, 141, 255, 0.2);
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    line-height: 1.6;
}

/* CoreAX 部分のみをさらに強調 - AI先進グロー */
.coreax-brand {
    color: #3A8DFF !important;               /* アクセントブルー */
    font-weight: 900;
    font-size: 1.2em;
    text-shadow: 
        0 2px 4px rgba(28, 28, 40, 0.4),
        0 4px 8px rgba(58, 141, 255, 0.4),
        0 0 16px rgba(58, 141, 255, 0.3);
}

/* 戦略的強み部分のスタイル統一 */
.strategic-strength-text {
    color: #DDEAF7 !important;              /* ソフトライトブルー */
    font-weight: 700;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(28, 28, 40, 0.4);
}

/* タイトル全体の統一スタイル */
.coreax-hero-section .professional-heading {
    color: #DDEAF7 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
}

/* すべての見出し要素への強制適用 */
.coreax-hero-section h1,
.coreax-hero-section h2,
.coreax-hero-section h3,
.coreax-hero-section h4,
.coreax-hero-section h5,
.coreax-hero-section h6 {
    color: #DDEAF7 !important;
}

/* Tailwind競合対策 */
.text-3xl.font-bold {
    color: #DDEAF7 !important;
}

/* アニメーション定義 */
@keyframes lightSweep {
    0%, 100% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        transform: translateX(100%) rotate(45deg);
        opacity: 1;
    }
}

@keyframes blueGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.2) rotate(5deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 1;
    }
    75% {
        transform: translateY(-25px) translateX(5px);
        opacity: 0.6;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .coreax-title {
        font-size: 2.5rem;
    }
    
    .coreax-subtitle {
        font-size: 1.1rem;
    }
    
    .coreax-hero-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .coreax-title {
        font-size: 2rem;
    }
    
    .coreax-subtitle {
        font-size: 1rem;
    }
    
    .coreax-hero-section {
        padding: 2rem 0;
    }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .coreax-title {
        color: #f8fafc;
    }
    
    .coreax-subtitle {
        color: rgba(248, 250, 252, 0.9);
    }
}

/* Hero Section内のカード専用スタイル - AI高級感テーマ */
.coreax-hero-section .strength-card {
    background: rgba(45, 62, 80, 0.8) !important;      /* ブルーグレー背景 */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(58, 141, 255, 0.3) !important;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 4px 12px rgba(28, 28, 40, 0.3),
        inset 0 1px 0 rgba(221, 234, 247, 0.1);
}

.coreax-hero-section .strength-card h4 {
    color: #DDEAF7 !important;               /* ソフトライトブルー */
    text-shadow: 
        0 1px 2px rgba(28, 28, 40, 0.3),
        0 0 6px rgba(58, 141, 255, 0.2);
}

.coreax-hero-section .strength-card p {
    color: rgba(221, 234, 247, 0.8) !important;  /* ソフトライトブルー透過 */
}

.coreax-hero-section .strength-card .bg-white {
    background: rgba(45, 62, 80, 0.9) !important;    /* ブルーグレー */
    backdrop-filter: blur(5px);
    border-left-color: #3A8DFF !important;          /* アクセントブルー */
}

.coreax-hero-section .strength-card .text-gray-800 {
    color: #DDEAF7 !important;               /* ソフトライトブルー */
}

.coreax-hero-section .strength-card .text-primary {
    color: #3A8DFF !important;               /* アクセントブルー */
}

/* サマリーセクション内のカードスタイル - 新デザイン対応 */
.coreax-hero-section .strategy-card {
    /* インラインスタイルを優先するため、!importantを削除 */
}

/* 戦略的優位性セクション全体のスタイル調整 */
.coreax-hero-section div[style*="background: #FFFFFF"] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.coreax-hero-section .strategy-card:hover {
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.15);
    transform: translateY(-2px) scale(1.02);
}

/* ヘッダーロゴテキストのレスポンシブ対応 */
@media (max-width: 640px) {
    .logo-text {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem !important;
    }
}

/* アクセシビリティ: アニメーション削減設定 */
@media (prefers-reduced-motion: reduce) {
    .coreax-hero-section::before,
    .coreax-hero-section::after,
    .tech-particles::before,
    .tech-particles::after {
        animation: none;
    }
}

/* 強調部分のスタイル統一 - AIテーマ対応 */
.strength-metric-label {
    background: #FFFFFF !important;
    color: #2D3E50 !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    border: 2px solid rgba(58, 141, 255, 0.3) !important;
    box-shadow: 0 2px 6px rgba(28, 28, 40, 0.1) !important;
    text-shadow: none !important;
}

.strength-metric-value {
    background: #FFFFFF !important;
    color: #3A8DFF !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    border: 2px solid rgba(58, 141, 255, 0.4) !important;
    box-shadow: 0 2px 8px rgba(58, 141, 255, 0.2) !important;
    text-shadow: 0 0 6px rgba(58, 141, 255, 0.3) !important;
}

/* メトリックコンテナの統一スタイル */
.strength-metric-container {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%) !important;
    border: 2px solid rgba(58, 141, 255, 0.3) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 
        0 4px 12px rgba(28, 28, 40, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* 強度カード全体のAIテーマ対応 */
.coreax-hero-section .strength-card {
    background: linear-gradient(135deg, #2D3E50 0%, #34495E 100%) !important;
    border: 2px solid rgba(58, 141, 255, 0.3) !important;
    box-shadow: 
        0 4px 12px rgba(28, 28, 40, 0.3),
        inset 0 1px 0 rgba(221, 234, 247, 0.1) !important;
}

.coreax-hero-section .strength-card h4 {
    color: #DDEAF7 !important;
    text-shadow: 0 1px 2px rgba(28, 28, 40, 0.3);
}

.coreax-hero-section .strength-card p {
    color: rgba(221, 234, 247, 0.9) !important;
}

.coreax-hero-section .strength-card .strength-icon {
    background: linear-gradient(135deg, #3A8DFF 0%, #2D3E50 100%) !important;
    box-shadow: 0 0 12px rgba(58, 141, 255, 0.4) !important;
}

.coreax-hero-section .strength-card .w-16.h-1 {
    background: #3A8DFF !important;
    box-shadow: 0 0 6px rgba(58, 141, 255, 0.4) !important;
}