/* Industries listing page — extracted from views/industries/index.php */

.ind-light-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}
.ind-hero-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    pointer-events: none;
}
.ind-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    animation: ind-pulse 2s ease infinite;
}
@keyframes ind-pulse {
    50% { opacity: 0.5; }
}
.ind-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.1;
}
.ind-hero-lead {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}
.ind-light-grid-section {
    padding: 40px 0 100px;
    background: #fff;
}
.ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.ind-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.ind-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}
.ind-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(55, 181, 74, 0.08));
    border-radius: 14px;
    color: #2563eb;
    margin-bottom: 20px;
}
.ind-card-icon svg {
    width: 28px;
    height: 28px;
}
.ind-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}
.ind-card-desc {
    flex: 1;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 20px;
}
.ind-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
}
.ind-light-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
}
.ind-light-cta h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}
.ind-light-cta p {
    color: #94a3b8;
    margin-bottom: 28px;
}
.ind-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ind-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
@media (prefers-reduced-motion: reduce) {
    .pulse-dot { animation: none; }
    .ind-card:hover { transform: none; }
}
