/* ═══════════════════════════════════════════════
   INDUSTRY DETAIL PAGES
   ═══════════════════════════════════════════════ */

/* Hero */
.ind-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 60%, #f0f9ff 100%);
    overflow: hidden;
}

.ind-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ind-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: industryOrbFloat 18s ease-in-out infinite;
}

.ind-hero__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow, rgba(14, 165, 233, 0.12)), transparent 70%);
    top: -15%;
    right: -5%;
}

.ind-hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
    bottom: -10%;
    left: -8%;
    animation-delay: -8s;
}

.ind-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ind-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.ind-hero__breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.ind-hero__breadcrumb a:hover {
    color: #0066cc;
}

.ind-hero__breadcrumb svg {
    width: 14px;
    height: 14px;
    stroke: #94a3b8;
}

.ind-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent, #0066cc);
    background: color-mix(in srgb, var(--accent, #0066cc) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent, #0066cc) 15%, transparent);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.ind-hero__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: color-mix(in srgb, var(--accent, #0066cc) 10%, transparent);
    color: var(--accent, #0066cc);
    margin-bottom: 1.5rem;
}

.ind-hero__icon svg {
    width: 32px;
    height: 32px;
}

.ind-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1rem;
}

.ind-hero__title-gradient {
    background: linear-gradient(135deg, var(--accent, #0066cc), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ind-hero__desc {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 2rem;
}

.ind-hero__stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.ind-hero__stat {
    text-align: center;
}

.ind-hero__stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent, #0066cc);
    line-height: 1;
}

.ind-hero__stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.3rem;
}

/* Solutions */
.ind-solutions {
    padding: 5rem 0;
    background: #fff;
}

.ind-solutions__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ind-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ind-section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent, #0066cc);
    background: color-mix(in srgb, var(--accent, #0066cc) 6%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent, #0066cc) 12%, transparent);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.ind-section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
}

.ind-solutions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.ind-solution-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.ind-solution-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent, #0066cc);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ind-solution-card__num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent, #0066cc);
    background: color-mix(in srgb, var(--accent, #0066cc) 10%, transparent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.ind-solution-card__text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

/* Case Studies */
.ind-cases {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.ind-cases__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ind-cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.ind-case-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.ind-case-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent, #0066cc);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.ind-case-card__badge {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    background: color-mix(in srgb, var(--accent, #0066cc) 8%, transparent);
    color: var(--accent, #0066cc);
    border: 1px solid color-mix(in srgb, var(--accent, #0066cc) 15%, transparent);
    margin-bottom: 1rem;
    width: fit-content;
}

.ind-case-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.ind-case-card__desc {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.ind-case-card__stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.ind-case-card__stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent, #0066cc);
}

.ind-case-card__stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* CTA Bottom */
.ind-cta {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}

.ind-cta__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ind-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.ind-cta__desc {
    font-size: 1rem;
    color: #475569;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .ind-hero {
        padding: 8rem 0 3rem;
    }

    .ind-hero__stats {
        gap: 1.5rem;
    }

    .ind-cases__grid {
        grid-template-columns: 1fr;
    }
}
