/* Industry hero */
.ind-hero {
    padding: 9rem 2rem 5rem;
    background: var(--navy);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ind-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ind-hero .badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ind-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.ind-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.ind-hero .cta-wrap {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ind-hero-orb-primary {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.1);
    top: 10%;
    left: -15%;
    animation: orb-drift-1 25s ease-in-out infinite;
}

.ind-hero-orb-secondary {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.07);
    bottom: 5%;
    right: -10%;
    animation: orb-drift-2 30s ease-in-out infinite;
}

/* Sections */
.ind-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.ind-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ind-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.ind-section .subtitle {
    text-align: center;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.ind-pain-section {
    background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.ind-pain-section .topo-bg { opacity: 0.03; }

.ind-pain-accent {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 5%;
    animation: geo-float-1 14s ease-in-out infinite;
}

.ind-solution-section {
    background: linear-gradient(180deg, white 0%, #f0fdf4 50%, white 100%);
}

.ind-solution-accent {
    width: 40px;
    height: 40px;
    top: 15%;
    left: 5%;
    animation: geo-float-2 16s ease-in-out infinite;
}

.ind-solution-dots {
    bottom: 10%;
    right: 3%;
    animation: geo-float-1 20s ease-in-out infinite;
}

.ind-faq-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.ind-faq-section .topo-bg { opacity: 0.025; }

/* Pain cards */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.pain-card {
    background: rgba(254, 242, 242, 0.8);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(254, 202, 202, 0.5);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s;
}

.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.pain-card .p-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

.pain-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #991b1b;
}

.pain-card p {
    color: #7f1d1d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Solution cards */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.solution-card {
    background: rgba(240, 253, 244, 0.8);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(187, 247, 208, 0.5);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.solution-card .s-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

.solution-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #166534;
}

.solution-card p {
    color: #14532d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Conversation */
.convo-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.ind-convo-orb {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.06);
    top: -10%;
    right: -10%;
    animation: orb-drift-2 22s ease-in-out infinite;
}

.convo-box {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.convo-line { margin-bottom: 1rem; }

.convo-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.convo-label.ai { color: var(--primary); }
.convo-label.caller { color: var(--gray-400); }

.convo-bubble {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.convo-bubble.ai {
    border-color: rgba(99, 102, 241, 0.3);
    background: var(--primary-50);
}

/* Stats */
.stats-section {
    background: var(--navy);
    color: white;
    padding: 3rem 2rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.stat { text-align: center; }

.stat .num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat .label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); padding: 1.25rem 0; }

.faq-q {
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-q:hover { color: var(--primary); }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--gray-400); transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '−'; color: var(--primary); }

.faq-a {
    max-height: none;
    overflow: visible;
    transition: max-height 0.3s;
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-top: 0.75rem;
}

.industry-disclosures-enhanced .faq-a {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
}

.industry-disclosures-enhanced .faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 0.75rem;
}

/* Industry content is visible by default. The owning script adds this
   component-scoped class only after its observer has been initialized. */
.ind-section .reveal {
    opacity: 1;
    transform: none;
}

body.industry-reveals-enhanced .ind-section .reveal {
    opacity: 0;
    transform: translateY(20px);
}

body.industry-reveals-enhanced .ind-section .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA */
.ind-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 50%, #7c3aed 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ind-cta h2 {
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.ind-cta p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.ind-cta .btn-glow {
    background: white;
    color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.ind-cta .btn-glow:hover { box-shadow: 0 0 50px rgba(255, 255, 255, 0.3); }

.ind-cta-orb {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    top: -10%;
    left: -10%;
    animation: orb-drift-1 20s ease-in-out infinite;
}

.ind-cta-content { position: relative; z-index: 1; }

.industry-footer-links {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .ind-hero { padding: 7rem 1.25rem 3rem; }
}
