/* ==========================================================================
   Enterprise Industries (industry child page of the Resources hub)
   Uses tokens from css/brand-v1.6.css. Master-brand / cross-platform page,
   so accents stay Navy + Teal — never Indigo or Coral here, even though
   the content is entirely about DataArtha Prime; the Resources section
   itself is cross-platform navigation, not inside the Prime product UI.
   ========================================================================== */

/* ---- Hero visual: radial hub-and-spoke (2026-08-17, Track B Cluster A) —
   5 sector nodes (healthcare, education, financial services, government,
   professional services) arranged around one shared center node, literally
   visualizing "the same connected platform" (this page's own subtitle)
   serving 5 distinct sectors. This is the "radial wheel" member of Cluster
   A's four distinct multi-node layouts (see docs/known-issues.md) — the
   only radial layout in the cluster; IT Consulting's hub was deliberately
   changed to a linear pipeline specifically so it wouldn't duplicate this
   shape.

   Frame+fill fix (2026-08-17): added the missing enclosing .iehv-frame
   (matching the site's established hero-visual convention — see
   it-consulting.css's comment for the full writeup), and lengthened the
   spokes from 78px to 96px so the wheel's diameter uses more of the
   frame. ---- */

.iehv-fallback {
    position: absolute;
    inset: 0;
}

.iehv-frame {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.iehv-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
}

.iehv-center {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent, var(--da-teal-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--da-white);
    z-index: 2;
}

.iehv-spoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 96px;
    height: 2px;
    background: color-mix(in srgb, var(--da-white) 20%, transparent);
    transform-origin: 0 50%;
}

.iehv-node {
    position: absolute;
    left: 96px;
    top: 50%;
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--da-navy-700);
    border: 1.5px solid var(--accent, var(--da-teal-400));
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent, var(--da-teal-400));
}

/* ---- Shared section label / title pattern ---- */

/* ---- Overview ---- */

.ie-intro {
    padding: 70px 0 20px;
    background: var(--da-white);
}

/* ---- Industries We Serve ---- */

.ie-verticals {
    padding: 60px 0;
    background: var(--da-gray-100);
}

/* ---- Platform Capabilities ---- */

.ie-capabilities {
    padding: 60px 0 70px;
    background: var(--da-white);
}

.ie-capabilities-text {
    font-size: 1.05rem;
    color: var(--da-gray-500);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 2rem;
}

.ie-capability-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--da-gray-100);
    border: 1.5px solid rgba(1, 76, 67, 0.3);
    color: var(--da-navy-900);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ie-capability-chip i {
    color: var(--da-teal-600);
    transition: color 0.25s ease;
}

.ie-capability-chip:hover {
    background: var(--da-teal-600);
    border-color: var(--da-teal-600);
    color: var(--da-white);
    transform: translateY(-2px);
}

.ie-capability-chip:hover i {
    color: var(--da-white);
}

/* ---- Benefits + Demo CTA ---- */

.ie-benefits {
    padding: 70px 0;
    background: var(--da-white);
}

.ie-consult-text {
    font-size: 0.98rem;
    color: var(--da-gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ---- Other industries ---- */

.ie-related {
    padding: 60px 0 70px;
    background: var(--da-gray-100);
}

/* ---- Closing CTA band ---- */

.ie-cta-band {
    background: var(--da-navy-700);
    padding: 60px 0;
}

.ie-cta-content {
    text-align: center;
    color: var(--da-white);
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {

    .ie-hero-title {
        font-size: 2.1rem;
    }

    .ie-hero-visual {
        max-width: 380px;
        margin-top: 1rem;
    }

    .ie-section-title {
        font-size: 1.65rem;
    }

    .ie-consult-card {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .ie-hero-title {
        font-size: 1.75rem;
    }

    .ie-section-title {
        font-size: 1.5rem;
    }

    .ie-vertical-card,
    .ie-related-card {
        padding: 1.75rem;
    }

    .ie-consult-card {
        padding: 2rem 1.5rem;
    }

    .ie-cta-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ie-vertical-card,
    .ie-related-card,
    .ie-capability-chip,
    .ie-consult-cta,
    .ie-cta-actions a {
        transition: none;
    }

    .ie-vertical-card:hover,
    .ie-related-card:hover,
    .ie-capability-chip:hover,
    .ie-consult-cta:hover,
    .ie-cta-actions a:hover {
        transform: none;
    }
}
