/* Industries Page - Modern Style (参考 home-ai.css) */

.industries-hero {
    position: relative;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.industries-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(14, 165, 233, 0.6));
    z-index: 1;
}

.industries-hero .container {
    position: relative;
    z-index: 2;
}

.industries-hero h1 {
    font-size: 5.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.industries-hero .subtitle {
    font-size: 2.6rem;
    margin-bottom: 25px;
    color: #FDB813;
    font-weight: 600;
}

.industries-hero .description {
    font-size: 2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Industry Cards Section */
.industry-cards-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.industry-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.industry-card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.industry-card h3 {
    font-size: 2.4rem;
    color: #2c97de;
    margin-bottom: 15px;
    font-weight: 700;
}

.industry-card .description {
    font-size: 2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.industry-card ul li {
    font-size: 2rem;
    line-height: 1.8;
    color: #666;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.industry-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c97de;
    font-weight: bold;
}

.industry-card .learn-more {
    display: inline-block;
    color: #2c97de;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
}

.industry-card .learn-more:hover {
    color: #1a73b5;
    text-decoration: none;
}

.industry-card .learn-more:after {
    content: " →";
    font-size: 2rem;
}

/* Why Expertise Matters Section */
.expertise-section {
    padding: 80px 0;
    background: white;
}

.expertise-section .quote {
    font-size: 2rem;
    line-height: 1.8;
    color: #2c97de;
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-weight: 500;
    border-left: 4px solid #FDB813;
    padding-left: 30px;
}

.expertise-section .benefits {
    max-width: 800px;
    margin: 0 auto;
}

.expertise-section .benefits ul {
    list-style: none;
    padding: 0;
}

.expertise-section .benefits ul li {
    font-size: 2rem;
    line-height: 2;
    color: #555;
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
}

.expertise-section .benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c97de;
    font-weight: bold;
    font-size: 2rem;
}

/* CTA Section */
.industry-cta-section {
    background: linear-gradient(135deg, #2c97de 0%, #1a73b5 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.industry-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.industry-cta-section .subtitle {
    font-size: 2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.industry-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-cta-section .btn-primary {
    background: #FDB813;
    color: #1a73b5;
    padding: 15px 40px;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
}

.industry-cta-section .btn-primary:hover {
    background: #ffc938;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 184, 19, 0.4);
}

.industry-cta-section .btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
}

.industry-cta-section .btn-secondary:hover {
    background: white;
    color: #2c97de;
}

/* Pain Points Section */
.ind-pain-points {
    padding: 80px 0;
    background: white;
}

.ind-pain-points h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c97de;
    margin-bottom: 60px;
}

.ind-pain-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #2c97de;
}

.ind-pain-card .emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ind-pain-card h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ind-pain-card .quote {
    font-size: 2rem;
    color: #2c97de;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.ind-pain-card p {
    font-size: 2rem;
    color: #555;
    line-height: 1.8;
}

/* Capabilities Section */
.ind-capabilities {
    padding: 80px 0;
    background: #f8f9fa;
}

.ind-capabilities h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c97de;
    margin-bottom: 60px;
}

.ind-capability-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ind-capability-item .number {
    background: #2c97de;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    flex-shrink: 0;
}

.ind-capability-item .content h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ind-capability-item .content p {
    font-size: 2rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* AI Section */
.ind-ai-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    color: white;
}

.ind-ai-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
}

.ind-ai-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.ind-ai-card .emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ind-ai-card h3 {
    font-size: 2rem;
    color: #FDB813;
    margin-bottom: 15px;
}

.ind-ai-card p {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.ind-ai-section .bottom-note {
    text-align: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sub-Sectors Section */
.ind-subsectors {
    padding: 80px 0;
    background: white;
}

.ind-subsectors h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c97de;
    margin-bottom: 40px;
}

.ind-subsectors ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.ind-subsectors ul li {
    font-size: 2rem;
    color: #555;
    padding: 15px 20px 15px 45px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.ind-subsectors ul li:before {
    content: "→";
    position: absolute;
    left: 20px;
    color: #2c97de;
    font-weight: bold;
}

/* Why MTC Section */
.ind-why-mtc {
    padding: 80px 0;
    background: #f8f9fa;
}

.ind-why-mtc h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c97de;
    margin-bottom: 60px;
}

.ind-why-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.ind-why-card .emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ind-why-card h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ind-why-card p {
    font-size: 2rem;
    color: #555;
    line-height: 1.8;
}

/* Trust Bar */
.ind-trust-bar {
    background: #1a1a2e;
    padding: 30px 0;
    text-align: center;
}

.ind-trust-bar p {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Special Badge */
.ind-exclusive-badge {
    display: inline-block;
    background: #FDB813;
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 2rem;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Overview Page - Large Cards */
.ind-overview-cards {
    padding: 80px 0;
    background: white;
}

.ind-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.ind-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ind-overview-card:hover .ind-card-image img {
    transform: scale(1.05);
}

.ind-section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ind-overview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #2c97de;
}

.ind-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-color: #FDB813;
}

.ind-overview-card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.ind-overview-card h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ind-overview-card .hook {
    font-size: 2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ind-overview-card .learn-more {
    display: inline-block;
    color: #2c97de;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.ind-overview-card .learn-more:hover {
    color: #1a73b5;
}

.ind-overview-card .learn-more:after {
    content: " →";
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .industries-hero h1,
    .ind-pain-points h2,
    .ind-capabilities h2,
    .ind-ai-section h2,
    .ind-why-mtc h2,
    .industry-cta-section h2 {
        font-size: 2rem;
    }
    
    .industries-hero .subtitle {
        font-size: 2rem;
    }
    
    .industries-hero .description {
        font-size: 2rem;
    }
    
    .industry-card h3,
    .ind-why-card h3 {
        font-size: 2rem;
    }
    
    .expertise-section .quote {
        font-size: 2rem;
        padding-left: 15px;
    }
    
    .ind-subsectors ul {
        grid-template-columns: 1fr;
    }
    
    .ind-capability-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ind-overview-card {
        padding: 30px 20px;
    }
    
    .industry-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .industry-cta-section .btn-primary,
    .industry-cta-section .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
