/* ========================================
   Industry Safety Education LP
======================================== */

.industry-page {
    background: #fff;
    color: var(--jg-text);
}

.industry-page .container {
    max-width: 1180px;
}

.jd-hero {
    min-height: 78svh;
    padding: 118px 0 72px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #111927;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.jd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 15, 27, .94) 0%, rgba(12, 25, 43, .82) 50%, rgba(12, 25, 43, .44) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .28) 100%);
}

.jd-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.jd-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 12px;
    border: 1px solid rgba(0, 162, 250, .44);
    border-radius: 999px;
    background: rgba(0, 162, 250, .14);
    color: #8ddaff;
    font-size: 1.2rem;
    font-weight: 700;
}

.jd-hero h1 {
    margin-top: 24px;
    color: #fff;
    font-size: 5.4rem;
    line-height: 1.22;
    font-weight: 900;
}

.jd-hero h1 em {
    color: #50c7ff;
    font-style: normal;
}

.jd-hero__lead {
    margin-top: 24px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.8rem;
    line-height: 1.9;
}

.jd-hero__actions,
.jd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.jd-hero__actions {
    margin-top: 34px;
}

.jd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), background .22s var(--ease-out);
}

.jd-btn:hover {
    transform: translateY(-2px);
}

.jd-btn--primary {
    background: linear-gradient(135deg, #00a2fa, #0abfb6);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 162, 250, .28);
}

.jd-btn--light {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
}

.jd-btn--dark {
    background: #1f2536;
    color: #fff;
}

.jd-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.jd-proof {
    min-height: 118px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}

.jd-proof__label {
    color: #8ddaff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.jd-proof__text {
    margin-top: 8px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.34rem;
    line-height: 1.55;
    font-weight: 700;
}

.jd-section {
    padding: 92px 0;
}

.jd-section--gray {
    background: #f5f7fb;
}

.jd-section--navy {
    background: #141c2b;
    color: #fff;
}

.jd-section--tight {
    padding: 72px 0;
}

.jd-section__head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.jd-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--jg-primary);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.jd-section--navy .jd-eyebrow {
    color: #6fd4ff;
}

.jd-section h2 {
    color: var(--jg-text);
    font-size: 3.8rem;
    line-height: 1.34;
    font-weight: 900;
}

.jd-section--navy h2,
.jd-section--navy .jd-card h3 {
    color: #fff;
}

.jd-section__lead {
    margin-top: 18px;
    color: var(--jg-text-sub);
    font-size: 1.62rem;
    line-height: 1.9;
}

.jd-section--navy .jd-section__lead,
.jd-section--navy .jd-card p,
.jd-section--navy .jd-list li {
    color: rgba(255, 255, 255, .76);
}

.jd-grid {
    display: grid;
    gap: 22px;
}

.jd-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.jd-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.jd-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.jd-card {
    min-width: 0;
    border: 1px solid rgba(31, 37, 54, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(22, 32, 49, .08);
    overflow: hidden;
}

.jd-card--padded {
    padding: 26px;
}

.jd-card--accent {
    border-color: rgba(0, 162, 250, .24);
}

.jd-card--dark {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
}

.jd-card__media {
    aspect-ratio: 16 / 10;
    background: #dfe8ef;
    overflow: hidden;
}

.jd-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jd-card__body {
    padding: 24px;
}

.jd-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(233, 58, 131, .1);
    color: var(--jg-accent);
    font-size: 1.15rem;
    font-weight: 800;
}

.jd-card h3 {
    margin-top: 14px;
    color: var(--jg-text);
    font-size: 2rem;
    line-height: 1.45;
    font-weight: 900;
}

.jd-card p {
    margin-top: 12px;
    color: var(--jg-text-sub);
    font-size: 1.45rem;
    line-height: 1.78;
}

.jd-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.jd-metric {
    padding: 26px;
    border-top: 5px solid #00a2fa;
}

.jd-metric--media {
    padding: 0;
}

.jd-metric--media .jd-card__body {
    padding: 24px 24px 26px;
}

.jd-metric--danger {
    border-top-color: #e93a83;
}

.jd-metric--warning {
    border-top-color: #f59e0b;
}

.jd-metric--growth {
    border-top-color: #0abfb6;
}

.jd-metric__value {
    margin-top: 14px;
    color: #141c2b;
    font-family: var(--font-heading);
    font-size: 4.6rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.jd-metric__value span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--jg-text-sub);
}

.jd-metric h3 {
    margin-top: 14px;
}

.jd-mini-chart {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.jd-mini-chart__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.jd-mini-chart__label,
.jd-mini-chart__num {
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 800;
}

.jd-mini-chart__label {
    color: var(--jg-text);
}

.jd-mini-chart__num {
    color: var(--jg-text-sub);
}

.jd-mini-chart__row > strong {
    color: var(--jg-text-sub);
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 800;
}

.jd-mini-chart__bar {
    grid-column: 1 / -1;
    height: 10px;
    border-radius: 999px;
    background: #e5ebf2;
    overflow: hidden;
}

.jd-mini-chart__fill {
    display: block;
    width: var(--bar);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00a2fa, #0abfb6);
}

.jd-mini-chart__fill--danger {
    background: linear-gradient(90deg, #e93a83, #f59e0b);
}

.jd-mini-chart__fill--warning {
    background: linear-gradient(90deg, #f59e0b, #ffd166);
}

.jd-mini-chart__fill--growth {
    background: linear-gradient(90deg, #0abfb6, #00a2fa);
}

.jd-mini-chart__row > div {
    height: 10px;
    border-radius: 999px;
    background: #e5ebf2;
    overflow: hidden;
}

.jd-mini-chart__row > div > i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00a2fa, #0abfb6);
}

@supports selector(.jd-mini-chart__row:has(> div > i)) {
    .jd-mini-chart__row:has(> div > i) {
        grid-template-columns: minmax(100px, .8fr) minmax(0, 1fr) auto;
    }
}

.jd-source {
    margin-top: 18px;
    color: #788293;
    font-size: 1.1rem;
    line-height: 1.5;
}

.jd-stat {
    padding: 24px;
}

.jd-stat__num {
    color: var(--jg-primary);
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 700;
}

.jd-stat__label {
    margin-top: 10px;
    color: var(--jg-text);
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.55;
}

.jd-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(31, 37, 54, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(22, 32, 49, .08);
}

.jd-ba {
    padding: 30px;
}

.jd-ba + .jd-ba {
    border-left: 1px solid rgba(31, 37, 54, .08);
}

.jd-ba__label {
    color: var(--jg-accent);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.jd-ba--after .jd-ba__label {
    color: var(--jg-primary);
}

.jd-ba h3 {
    margin-top: 12px;
    color: var(--jg-text);
    font-size: 2.1rem;
    line-height: 1.4;
    font-weight: 900;
}

.jd-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.jd-list li {
    position: relative;
    padding-left: 18px;
    color: var(--jg-text-sub);
    font-size: 1.45rem;
    line-height: 1.75;
}

.jd-list li::before {
    content: "";
    position: absolute;
    top: .85em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--jg-primary);
}

.jd-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 44px;
    align-items: center;
}

.jd-feature + .jd-feature {
    margin-top: 58px;
}

.jd-feature--reverse {
    direction: rtl;
}

.jd-feature--reverse > * {
    direction: ltr;
}

.jd-feature__image {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: #dfe8ef;
    box-shadow: 0 18px 40px rgba(18, 29, 46, .14);
}

.jd-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jd-feature h3 {
    color: var(--jg-text);
    font-size: 3rem;
    line-height: 1.35;
    font-weight: 900;
}

.jd-feature p {
    margin-top: 16px;
    color: var(--jg-text-sub);
    font-size: 1.58rem;
    line-height: 1.9;
}

.jd-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.jd-chip-list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 162, 250, .08);
    color: #1f2536;
    font-size: 1.22rem;
    font-weight: 800;
}

.jd-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
}

.jd-step__num {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: #e9f7ff;
    color: var(--jg-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.jd-step h3 {
    margin: 0;
}

.jd-faq {
    display: grid;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.jd-faq details {
    border: 1px solid rgba(31, 37, 54, .1);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.jd-faq summary {
    cursor: pointer;
    padding: 20px 22px;
    color: var(--jg-text);
    font-size: 1.58rem;
    font-weight: 800;
    line-height: 1.55;
}

.jd-faq p {
    padding: 0 22px 22px;
    color: var(--jg-text-sub);
    font-size: 1.45rem;
    line-height: 1.82;
}

.jd-cta {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: #101827;
    color: #fff;
}

.jd-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 162, 250, .22), transparent 48%, rgba(233, 58, 131, .16));
}

.jd-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
}

.jd-cta h2 {
    color: #fff;
    font-size: 3.4rem;
    line-height: 1.35;
    font-weight: 900;
}

.jd-cta p {
    margin-top: 14px;
    max-width: 720px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.55rem;
    line-height: 1.85;
}

.jd-subnav {
    border-bottom: 1px solid rgba(31, 37, 54, .08);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
}

.jd-subnav__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
}

.jd-subnav a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 12px;
    border-radius: 999px;
    color: var(--jg-text);
    font-size: 1.25rem;
    font-weight: 800;
}

.jd-subnav a:hover {
    background: rgba(0, 162, 250, .08);
    color: var(--jg-primary);
}

@media (max-width: 980px) {
    .jd-hero {
        min-height: 76svh;
    }

    .jd-hero h1 {
        font-size: 4.2rem;
    }

    .jd-hero__proof,
    .jd-metric-grid,
    .jd-grid--3,
    .jd-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .jd-feature,
    .jd-cta__inner {
        grid-template-columns: 1fr;
    }

    .jd-feature--reverse {
        direction: ltr;
    }
}

@media (max-width: 720px) {
    .jd-hero {
        min-height: auto;
        padding: 104px 0 56px;
    }

    .jd-hero::before {
        background: linear-gradient(180deg, rgba(9, 15, 27, .96) 0%, rgba(12, 25, 43, .88) 58%, rgba(12, 25, 43, .64) 100%);
    }

    .jd-hero h1 {
        font-size: 3.2rem;
    }

    .jd-hero__lead {
        font-size: 1.58rem;
    }

    .jd-hero__proof,
    .jd-metric-grid,
    .jd-grid--2,
    .jd-grid--3,
    .jd-grid--4,
    .jd-before-after {
        grid-template-columns: 1fr;
    }

    .jd-ba + .jd-ba {
        border-left: 0;
        border-top: 1px solid rgba(31, 37, 54, .08);
    }

    .jd-section {
        padding: 68px 0;
    }

    .jd-section h2,
    .jd-cta h2 {
        font-size: 2.7rem;
    }

    .jd-feature h3 {
        font-size: 2.35rem;
    }

    .jd-metric__value {
        font-size: 4rem;
    }

    .jd-btn,
    .jd-actions {
        width: 100%;
    }

    .jd-btn {
        padding-inline: 16px;
    }

    .guuta-hint {
        display: none;
    }

    .jd-cta__inner {
        gap: 24px;
    }
}
