:root {
    --safety-green: #168a4a;
    --safety-green-2: #0f6f4a;
    --safety-green-dark: #123a2b;
    --safety-lime: #b8df55;
    --safety-teal: #197b78;
    --safety-amber: #d49a2a;
    --safety-graphite: #202724;
    --safety-ink: #101614;
    --safety-muted: #60706a;
    --safety-soft: #edf6f1;
    --safety-soft-2: #f5f9f6;
    --safety-line: #dce8e2;
    --safety-bg: #f8fbf9;
    --safety-white: #ffffff;
    --safety-focus: #7ac943;
    --safety-shadow: 0 20px 56px rgba(18, 58, 43, .12);
    --safety-shadow-soft: 0 12px 32px rgba(18, 58, 43, .08);
    --safety-max: 1440px;
    --safety-read: 880px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 6%, rgba(184, 223, 85, .16), transparent 24rem),
        radial-gradient(circle at 92% 10%, rgba(25, 123, 120, .12), transparent 26rem),
        linear-gradient(180deg, #fbfdfc 0, var(--safety-bg) 520px),
        var(--safety-bg);
    color: var(--safety-graphite);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: no-preference) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 0;
        transition:
            opacity .85s cubic-bezier(.215,.61,.355,1),
            transform .85s cubic-bezier(.215,.61,.355,1);
        will-change: opacity, transform;
    }
    .reveal { transform: translateY(34px); }
    .reveal-left { transform: translateX(-38px); }
    .reveal-right { transform: translateX(38px); }
    .reveal-scale { transform: scale(.96); }
    .reveal.visible,
    .reveal-left.visible,
    .reveal-right.visible,
    .reveal-scale.visible {
        opacity: 1;
        transform: none;
    }
    .stagger-children > * {
        opacity: 0;
        transform: translateY(26px);
        transition:
            opacity .7s cubic-bezier(.215,.61,.355,1),
            transform .7s cubic-bezier(.215,.61,.355,1);
    }
    .stagger-children.visible > * { opacity: 1; transform: none; }
    .stagger-children.visible > *:nth-child(1) { transition-delay: .04s; }
    .stagger-children.visible > *:nth-child(2) { transition-delay: .10s; }
    .stagger-children.visible > *:nth-child(3) { transition-delay: .16s; }
    .stagger-children.visible > *:nth-child(4) { transition-delay: .22s; }
    .stagger-children.visible > *:nth-child(5) { transition-delay: .28s; }
    .stagger-children.visible > *:nth-child(6) { transition-delay: .34s; }
    .stagger-children.visible > *:nth-child(7) { transition-delay: .40s; }
    .stagger-children.visible > *:nth-child(8) { transition-delay: .46s; }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
main { min-height: 70vh; }

.safety-header {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    width: min(calc(100% - 32px), 1440px);
    margin: 12px auto 0;
    padding: 14px clamp(22px, 2.8vw, 42px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(220, 232, 226, .9);
    border: 1px solid rgba(220, 232, 226, .78);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 42px rgba(18, 58, 43, .09);
}
.safety-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 264px;
}
.safety-brand img,
.safety-footer-brand img {
    width: 48px;
    height: 38px;
    object-fit: contain;
    border-radius: 0;
}
.safety-brand-text strong,
.safety-footer-brand strong {
    display: block;
    color: var(--safety-ink);
    font-size: 1.22rem;
    line-height: 1.12;
    letter-spacing: 0;
}
.safety-brand-text small,
.safety-footer-brand small {
    display: block;
    margin-top: 3px;
    color: var(--safety-muted);
    font-size: .73rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.safety-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 1.7vw, 22px);
    flex-wrap: wrap;
}
.safety-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(220, 232, 226, .9);
    border-radius: 10px;
    background: rgba(255, 255, 255, .94);
    color: var(--safety-green-dark);
    box-shadow: 0 10px 24px rgba(18, 58, 43, .08);
}
.safety-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.safety-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    border-radius: 8px;
    color: #40534b;
    font-weight: 780;
    font-size: .92rem;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.safety-nav a:hover,
.safety-nav .is-active {
    background: var(--safety-soft);
    color: var(--safety-green-dark);
}
.safety-nav .safety-nav-cta {
    border: 1px solid rgba(22, 138, 74, .24);
    background: var(--safety-green);
    color: #fff;
    box-shadow: 0 10px 24px rgba(22, 138, 74, .18);
    padding: 13px 24px;
}
.safety-nav .safety-nav-cta:hover,
.safety-nav .safety-nav-cta.is-active {
    background: #10733d;
    color: #fff;
}

.safety-hero,
.safety-page-hero,
.safety-section,
.safety-footer {
    width: min(var(--safety-max), calc(100% - 48px));
    margin: 0 auto;
}
.safety-hero {
    display: grid;
    grid-template-columns: minmax(400px, .74fr) minmax(700px, 1.26fr);
    gap: clamp(30px, 3.1vw, 54px);
    align-items: center;
    min-height: clamp(700px, calc(100vh - 118px), 860px);
    padding: clamp(12px, 2.2vw, 30px) 0 34px;
}
.safety-hero h1,
.safety-page-hero h1 {
    margin: 0;
    max-width: 640px;
    color: var(--safety-green-dark);
    font-size: clamp(2.55rem, 3.75vw, 4.15rem);
    line-height: 1.02;
    letter-spacing: 0;
}
.safety-page-hero h1 {
    font-size: clamp(2.1rem, 4vw, 4.1rem);
}
.safety-page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 86px 0 44px;
}
.safety-hero p,
.safety-page-hero p,
.safety-section p {
    color: var(--safety-muted);
    line-height: 1.72;
}
.safety-hero-copy > p:not(.safety-kicker),
.safety-page-hero > p {
    max-width: var(--safety-read);
    font-size: clamp(1.04rem, 1.6vw, 1.2rem);
}
.safety-page-hero .safety-actions {
    justify-content: center;
}
.safety-page-hero .safety-hero-proof {
    margin-inline: auto;
}
.safety-hero-copy {
    align-self: center;
    padding-top: clamp(18px, 2.5vw, 36px);
    max-width: 600px;
}
.safety-hero-lead {
    margin-bottom: 0;
    max-width: 540px;
    color: #3f514a;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.56;
}
.safety-kicker {
    margin: 0 0 12px;
    color: var(--safety-green);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.safety-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.safety-actions-compact {
    margin-top: 18px;
}
.safety-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 17px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.safety-btn:hover { transform: translateY(-1px); }
.safety-btn:focus-visible,
.safety-nav a:focus-visible,
.safety-card:focus-visible,
.safety-form input:focus-visible,
.safety-form select:focus-visible,
.safety-form textarea:focus-visible {
    outline: 3px solid rgba(167, 216, 61, .5);
    outline-offset: 2px;
}
.safety-btn-primary {
    background: var(--safety-green);
    color: #fff;
    box-shadow: 0 13px 30px rgba(22, 138, 74, .21);
}
.safety-btn-primary:hover { background: #10733d; }
.safety-btn-secondary {
    background: #fff;
    border-color: var(--safety-line);
    color: var(--safety-green-dark);
}
.safety-btn-secondary:hover {
    border-color: rgba(22, 138, 74, .34);
    box-shadow: var(--safety-shadow-soft);
}

.safety-page-hero-compact {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 10px;
}

.safety-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.safety-directory-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(220, 232, 226, .92);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--safety-shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.safety-directory-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 138, 74, .22);
    box-shadow: 0 24px 42px rgba(18, 58, 43, .12);
}
.safety-directory-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(180deg, #eff7f2, #dfece5);
}
.safety-directory-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.safety-directory-card__badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(16, 58, 43, .82);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.safety-directory-card__body {
    display: grid;
    gap: 10px;
    padding: 12px 14px 14px;
}
.safety-directory-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.safety-directory-card__meta span,
.safety-directory-card__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--safety-soft);
    color: var(--safety-green-dark);
    font-size: .74rem;
    font-weight: 760;
}
.safety-directory-card__body h3 {
    margin: 0;
    color: var(--safety-ink);
}
.safety-directory-card__body h3 {
    font-size: 1.08rem;
    line-height: 1.2;
}
.safety-directory-card__body p {
    margin: 0;
    color: #4b5f58;
    font-size: .92rem;
    line-height: 1.58;
}
.safety-directory-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.safety-directory-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 16px 16px;
}

.safety-hero-visual {
    position: relative;
    display: grid;
    min-height: clamp(560px, 44vw, 690px);
    align-content: stretch;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}
.safety-hero-visual::before {
    content: none;
}
.safety-hero-visual::after {
    content: none;
}
.safety-hero-map {
    position: relative;
    min-height: 260px;
    padding: clamp(24px, 4vw, 36px);
    border-radius: 8px;
    background:
        radial-gradient(circle at 80% 18%, rgba(184, 223, 85, .22), transparent 26%),
        linear-gradient(130deg, rgba(18, 58, 43, .95), rgba(22, 138, 74, .87)),
        var(--safety-green-dark);
    color: #fff;
    overflow: hidden;
}
.safety-media-slot {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(220, 232, 226, .92);
    background:
        radial-gradient(circle at 18% 20%, rgba(184, 223, 85, .32), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(25, 123, 120, .20), transparent 30%),
        linear-gradient(135deg, rgba(18, 58, 43, .98), rgba(22, 138, 74, .82));
    color: #fff;
}
.safety-media-photo {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform .5s ease, filter .5s ease;
}
.safety-media-photo::before {
    z-index: 1;
    background: linear-gradient(180deg, rgba(18, 58, 43, .06), rgba(18, 58, 43, .46));
}
.safety-media-photo::after {
    z-index: 1;
}
.safety-media-photo span {
    z-index: 2;
    width: fit-content;
    max-width: calc(100% - 44px);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(18, 58, 43, .72);
    color: #fff;
    backdrop-filter: blur(8px);
}
.safety-media-slot::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
}
.safety-media-slot::after {
    content: "";
    position: absolute;
    right: -44px;
    top: -54px;
    width: 220px;
    height: 280px;
    border: 28px solid rgba(255, 255, 255, .10);
    border-radius: 45% 55% 42% 58%;
    transform: rotate(-22deg);
}
.safety-media-slot span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 1;
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.safety-media-hero {
    min-height: clamp(520px, 41vw, 650px);
    margin-bottom: 0;
    border-color: rgba(18, 58, 43, .10);
    box-shadow: 0 30px 76px rgba(18, 58, 43, .16);
    background-position: 72% 42%;
    transform: translateZ(0);
}
.safety-media-hero:hover {
    filter: saturate(1.04) contrast(1.02);
}
.safety-media-hero::before {
    background:
        linear-gradient(180deg, rgba(18, 58, 43, .01), rgba(18, 58, 43, .12)),
        linear-gradient(90deg, rgba(18, 58, 43, .18), rgba(18, 58, 43, .03) 38%, transparent 72%);
}
.safety-hero-image-badge {
    position: absolute;
    left: clamp(20px, 3vw, 40px);
    top: clamp(18px, 3vw, 34px);
    z-index: 2;
    max-width: 300px;
    padding: 14px 18px 14px 60px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(25, 82, 56, .78), rgba(54, 102, 72, .62));
    color: #fff;
    box-shadow: 0 16px 42px rgba(18, 58, 43, .18);
    backdrop-filter: blur(10px);
    animation: safetyFloatIn .7s ease both;
}
.safety-hero-image-badge::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 50%;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    transform: translateY(-50%);
}
.safety-hero-image-badge::after {
    content: "";
    position: absolute;
    left: 32px;
    top: calc(50% - 2px);
    width: 12px;
    height: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.safety-hero-image-badge strong {
    display: block;
    font-size: .9rem;
    line-height: 1.38;
}
.safety-media-card {
    min-height: 148px;
    margin: -8px -8px 18px;
}
.safety-media-quote {
    min-height: 210px;
    margin: 4px 0 20px;
    border-color: rgba(255, 255, 255, .16);
}
.safety-media-light {
    background:
        radial-gradient(circle at 18% 20%, rgba(184, 223, 85, .28), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(25, 123, 120, .16), transparent 32%),
        linear-gradient(135deg, #f9fcfa, #eaf5ef);
    color: var(--safety-green-dark);
}
.safety-media-light.safety-media-photo span {
    background: rgba(255, 255, 255, .86);
    color: var(--safety-green-dark);
}
.safety-media-light::before {
    border-color: rgba(18, 58, 43, .10);
}
.safety-media-light::after {
    border-color: rgba(22, 138, 74, .10);
}
.safety-media-light span {
    color: var(--safety-green-dark);
}
.safety-hero-map::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -24px;
    width: 260px;
    height: 310px;
    border-radius: 46% 54% 44% 56%;
    border: 24px solid rgba(184, 223, 85, .2);
    transform: rotate(-24deg);
}

@media (max-width: 1240px) {
    .safety-page-hero--editorial {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 22px;
    }
    .safety-page-hero--editorial .safety-page-hero__copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        justify-items: center;
    }
    .safety-page-hero--editorial .safety-actions {
        justify-content: center;
    }
    .safety-page-hero--editorial .safety-hero-proof {
        margin-inline: auto;
    }
    .safety-program-feature__content {
        grid-template-columns: 1fr;
    }
    .safety-home-speakers-grid,
    .safety-directory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .safety-page-hero__panel,
    .safety-page-hero__panel--compact,
    .safety-speaker-preview-grid {
        grid-template-columns: 1fr;
    }
    .safety-page-hero__panel {
        margin-top: 0;
        padding: 0;
    }
    .safety-page-hero__visual--speakers .safety-speaker-preview-grid > .safety-speaker-preview-card:first-child {
        grid-row: auto;
    }
    .safety-speaker-preview-card--primary,
    .safety-speaker-preview-grid {
        min-height: auto;
    }
    .safety-speaker-preview-card {
        min-height: 240px;
    }
    .safety-home-speakers-grid,
    .safety-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .safety-directory-card__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .safety-page-hero--editorial {
        padding-top: 12px;
        gap: 18px;
    }
    .safety-page-hero--editorial h1 {
        font-size: clamp(2.1rem, 11vw, 3.05rem);
        line-height: 1.04;
    }
    .safety-page-hero__badge,
    .safety-page-hero__speaker-badge {
        position: static;
        max-width: none;
        margin-bottom: 14px;
    }
    .safety-page-hero__media {
        min-height: 320px;
    }
    .safety-program-feature__content {
        padding: 22px;
    }
    .safety-home-speakers-grid,
    .safety-directory-grid {
        grid-template-columns: 1fr;
    }
    .safety-cta-points {
        justify-content: flex-start;
    }
}
@media (max-width: 767px) {
  .clients-section-new { padding:38px 0 42px; }
  .clients-marquee-track { margin-top:1.6rem; padding:.45rem 0; }
  .clients-scroll { gap:.85rem; animation-duration:40s; }
  .client-logo-slot { width:148px; height:68px; padding:.65rem .8rem; border-radius:16px; }
  .client-logo-mark--wide { max-width:132px; max-height:34px; }
  .client-logo-mark--standard { max-width:116px; max-height:36px; }
  .client-logo-mark--compact { max-width:96px; max-height:54px; }
}
.safety-hero-map strong {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 370px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
}
.safety-hero-map span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}
.safety-hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: -92px;
    padding: 0 clamp(54px, 7vw, 116px) 18px;
}
.safety-hero-panel span {
    display: grid;
    gap: 7px;
    min-height: 108px;
    padding: 21px 22px 19px 82px;
    border: 1px solid rgba(220, 232, 226, .9);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 252, 250, .88));
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(18, 58, 43, .14);
    backdrop-filter: blur(10px);
    position: relative;
    animation: safetyCardLift .75s ease both;
    transition: transform .22s ease, box-shadow .22s ease;
}
.safety-hero-panel span:nth-child(2) {
    animation-delay: .08s;
}
.safety-hero-panel span:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(18, 58, 43, .19);
}
.safety-hero-panel span::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(22, 138, 74, .18), rgba(22, 138, 74, .08));
}
.safety-hero-panel span::after {
    content: "";
    position: absolute;
    left: 35px;
    top: 37px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--safety-green);
    border-radius: 50%;
}
.safety-hero-panel span:nth-child(2)::after {
    width: 17px;
    height: 21px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(var(--safety-green), var(--safety-green)) 0 0 / 100% 3px no-repeat,
        linear-gradient(var(--safety-green), var(--safety-green)) 0 8px / 100% 3px no-repeat,
        linear-gradient(var(--safety-green), var(--safety-green)) 0 16px / 72% 3px no-repeat;
}
.safety-hero-panel strong {
    color: var(--safety-green-dark);
    font-size: .95rem;
}
.safety-hero-panel small {
    color: var(--safety-muted);
    line-height: 1.34;
}
.safety-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
    max-width: 560px;
}
.safety-hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 11px;
    border: 1px solid rgba(22, 138, 74, .18);
    background: rgba(255, 255, 255, .82);
    border-radius: 8px;
    color: var(--safety-green-dark);
    font-size: .8rem;
    font-weight: 850;
    box-shadow: 0 1px 0 rgba(18, 58, 43, .03);
}
.safety-hero-proof span strong {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(22, 138, 74, .10);
    color: var(--safety-green);
    font-size: .76rem;
    line-height: 1;
    font-weight: 900;
}
.safety-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(var(--safety-max), calc(100% - 48px));
    margin: -6px auto 32px;
    overflow: hidden;
    border: 1px solid var(--safety-line);
    border-radius: 8px;
    background: var(--safety-line);
    box-shadow: 0 1px 0 rgba(18, 58, 43, .03);
}
.safety-trust span {
    background: #fff;
    padding: 16px;
    text-align: center;
    font-weight: 850;
    color: var(--safety-green-dark);
}
.safety-speakers-showcase {
    padding-top: 16px;
    padding-bottom: 10px;
}
.safety-speakers-showcase__frame {
    display: grid;
    gap: 34px;
    padding: clamp(10px, 1vw, 14px) 0 8px;
}
.safety-speakers-showcase__head {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}
.safety-speakers-showcase__head h2 {
    max-width: 1020px;
    font-size: clamp(2rem, 3.6vw, 3.45rem);
    line-height: 1.08;
}
.safety-speakers-showcase__head p {
    max-width: 800px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.68;
}
.safety-home-speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.safety-home-speaker-card {
    display: grid;
    overflow: hidden;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    background: linear-gradient(180deg, #162119, #101813);
    box-shadow: 0 22px 50px rgba(18, 58, 43, .15);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.safety-home-speaker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 216, 61, .22);
    box-shadow: 0 28px 62px rgba(18, 58, 43, .22);
}
.safety-home-speaker-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(180deg, #eff7f2, #dfece5);
}
.safety-home-speaker-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(8, 12, 10, 0), rgba(8, 12, 10, .8));
}
.safety-home-speaker-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.safety-home-speaker-card__badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(16, 58, 43, .82);
    color: #fff;
    font-size: .69rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.safety-home-speaker-card__body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px 18px 20px;
    min-height: 188px;
}
.safety-home-speaker-card__body h3 {
    margin: 0;
    color: #f4f8f4;
    font-size: 1.12rem;
    line-height: 1.2;
}
.safety-home-speaker-card__body p {
    margin: 0;
    color: rgba(236, 242, 237, .74);
    font-size: .9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.safety-home-speaker-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.safety-home-speaker-card__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: rgba(244, 248, 244, .82);
    font-size: .72rem;
    font-weight: 760;
}
.safety-home-speaker-card .safety-card-link {
    margin-top: auto;
    color: #b8df55;
}
.safety-page-hero .safety-hero-proof {
    max-width: 760px;
}
.safety-page-hero--editorial {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(28px, 3vw, 54px);
    align-items: center;
    text-align: left;
    padding: 24px 0 30px;
    min-height: 560px;
}
.safety-page-hero--speakers {
    min-height: 520px;
}
.safety-page-hero--text-only {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    min-height: 0;
}
.safety-page-hero--text-only .safety-page-hero__copy {
    max-width: 860px;
    justify-items: center;
    text-align: center;
}
.safety-page-hero--text-only .safety-actions {
    justify-content: center;
}
.safety-page-hero--text-only .safety-hero-proof {
    max-width: 720px;
    margin-inline: auto;
}
.safety-page-hero--programs {
    min-height: 540px;
}
.safety-page-hero--editorial .safety-page-hero__copy {
    display: grid;
    align-content: center;
    gap: 0;
    max-width: 600px;
}
.safety-page-hero--editorial h1 {
    max-width: 680px;
    font-size: clamp(2.15rem, 3.5vw, 3.7rem);
    line-height: 1.04;
}
.safety-page-hero--editorial > .safety-page-hero__copy > p {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.66;
}
.safety-page-hero--editorial .safety-actions {
    justify-content: flex-start;
}
.safety-page-hero--editorial .safety-hero-proof {
    margin-inline: 0;
    max-width: 560px;
}
.safety-page-hero__visual {
    position: relative;
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
}
.safety-page-hero__media {
    min-height: 460px;
    border-radius: 22px;
    overflow: hidden;
}
.safety-page-hero__badge,
.safety-page-hero__speaker-badge {
    position: absolute;
    left: clamp(22px, 3vw, 34px);
    top: clamp(22px, 3vw, 34px);
    z-index: 2;
    max-width: 360px;
    padding: 16px 18px 16px 58px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(16, 58, 43, .82);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 54px rgba(18, 58, 43, .22);
}
.safety-page-hero__badge::before,
.safety-page-hero__speaker-badge::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.84);
}
.safety-page-hero__badge::after,
.safety-page-hero__speaker-badge::after {
    content: "";
    position: absolute;
    left: 26px;
    top: calc(50% - 2px);
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.safety-page-hero__badge strong,
.safety-page-hero__speaker-badge strong {
    display: block;
    font-size: .94rem;
    line-height: 1.42;
}
.safety-page-hero__panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: -84px;
    padding: 0 28px 0 28px;
}
.safety-page-hero__panel span {
    display: grid;
    gap: 7px;
    min-height: 108px;
    padding: 20px 20px 18px 82px;
    border: 1px solid rgba(220, 232, 226, .9);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,252,250,.9));
    box-shadow: 0 18px 48px rgba(18, 58, 43, .14);
    position: relative;
}
.safety-page-hero__panel span::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(22, 138, 74, .18), rgba(22, 138, 74, .08));
}
.safety-page-hero__panel span::after {
    content: "";
    position: absolute;
    left: 35px;
    top: 37px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--safety-green);
    border-radius: 50%;
}
.safety-page-hero__panel span:nth-child(2)::after {
    width: 17px;
    height: 21px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(var(--safety-green), var(--safety-green)) 0 0 / 100% 3px no-repeat,
        linear-gradient(var(--safety-green), var(--safety-green)) 0 8px / 100% 3px no-repeat,
        linear-gradient(var(--safety-green), var(--safety-green)) 0 16px / 72% 3px no-repeat;
}
.safety-page-hero__panel strong {
    color: var(--safety-green-dark);
    font-size: .95rem;
}
.safety-page-hero__panel small {
    color: var(--safety-muted);
    line-height: 1.38;
}
.safety-page-hero__panel--compact {
    margin-top: 0;
    padding: 0;
}
.safety-page-hero__panel--compact span {
    min-height: 94px;
}
.safety-program-feature {
    padding-top: 0;
    padding-bottom: 10px;
}
.safety-program-feature__content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 20px;
    padding: 26px;
    border: 1px solid rgba(220, 232, 226, .92);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,252,248,.92));
    box-shadow: var(--safety-shadow-soft);
}
.safety-program-feature__copy {
    display: grid;
    align-content: start;
    gap: 0;
}
.safety-program-feature__copy h2 {
    margin: 0 0 12px;
    color: var(--safety-green-dark);
    font-size: clamp(1.85rem, 3vw, 2.95rem);
    line-height: 1.08;
}
.safety-program-feature__copy > p {
    max-width: 620px;
}
.safety-program-feature__meta {
    display: grid;
    gap: 16px;
    align-content: center;
}
.safety-program-feature__card {
    padding: 22px 22px 20px;
    border: 1px solid rgba(220, 232, 226, .92);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(18, 58, 43, .08);
}
.safety-program-feature__card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--safety-green);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.safety-program-feature__card h3 {
    margin: 0 0 10px;
    color: var(--safety-green-dark);
    font-size: 1.12rem;
    line-height: 1.28;
}
.safety-program-feature__card p {
    margin: 0;
}
.safety-process-card {
    min-height: 100%;
}
.safety-process-card h3 {
    margin: 0 0 8px;
    color: var(--safety-green-dark);
    font-size: 1.08rem;
    line-height: 1.24;
}
.safety-program-card {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 100%;
    padding-top: 20px;
}
.safety-program-card h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    line-height: 1.12;
}
.safety-speaker-preview-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 16px;
    min-height: 460px;
}
.safety-speaker-preview-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, #edf5f0, #dcebe2);
    box-shadow: 0 22px 54px rgba(18, 58, 43, .14);
}
.safety-speaker-preview-card--primary {
    min-height: 460px;
}
.safety-speaker-preview-grid .safety-speaker-preview-card--secondary + .safety-speaker-preview-card--secondary {
    margin-top: 16px;
}
.safety-page-hero__visual--speakers .safety-speaker-preview-grid {
    align-items: stretch;
}
.safety-page-hero__visual--speakers .safety-speaker-preview-grid > .safety-speaker-preview-card:first-child {
    grid-row: 1 / span 2;
}
.safety-speaker-preview-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.safety-speaker-preview-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(9, 15, 12, 0), rgba(9, 15, 12, .84));
}
.safety-speaker-preview-card__overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    gap: 6px;
}
.safety-speaker-preview-card__overlay strong {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.18;
}
.safety-speaker-preview-card__overlay small {
    color: rgba(244, 248, 244, .82);
    font-size: .82rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.safety-page-hero--culture {
    min-height: 610px;
}
.safety-page-hero--prevencion,
.safety-page-hero--bienestar {
    min-height: 610px;
}
.safety-page-hero__visual--culture .safety-page-hero__media {
    min-height: 500px;
}
.safety-page-hero__visual--prevencion .safety-page-hero__media,
.safety-page-hero__visual--bienestar .safety-page-hero__media {
    min-height: 500px;
}
.safety-page-hero--culture .safety-page-hero__copy {
    max-width: 640px;
}
.safety-page-hero--prevencion .safety-page-hero__copy,
.safety-page-hero--bienestar .safety-page-hero__copy {
    max-width: 640px;
}
.safety-speakers-showcase__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: -2px;
}
/* Clients Section - matched to LA system */
.clients-section-new { padding:44px 0 50px; background:#f8f9fb; position:relative; overflow:hidden; }
.clients-section-new::before { content:""; position:absolute; left:50%; top:0; width:min(1120px, 86vw); height:1px; transform:translateX(-50%); background:linear-gradient(90deg, rgba(18,58,43,0), rgba(18,58,43,.12), rgba(18,58,43,0)); }
.clients-inner { max-width:var(--safety-max); margin:0 auto; padding:0 24px; text-align:center; }
.home-section-intro { max-width: 860px; margin: 0 auto; }
.sec-badge { display:inline-flex; align-items:center; justify-content:center; min-height:34px; padding:8px 16px; border-radius:999px; font-size:.78rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.sec-badge--green-dark { background:rgba(122, 74, 59, .08); color:#b2664b; }
.home-section-copy { margin:0 auto; max-width:760px; font-size:1.06rem; line-height:1.7; }
.home-section-copy-dark { color:#6b7280; }
.clients-marquee-track { display:flex; align-items:center; overflow:hidden; mask-image:linear-gradient(90deg,transparent,black 6%,black 94%,transparent); -webkit-mask-image:linear-gradient(90deg,transparent,black 6%,black 94%,transparent); margin-top:2rem; padding:.5rem 0; }
.clients-scroll { display:flex; align-items:center; gap:1rem; animation:clientsScroll 44s linear infinite; padding:0 .25rem; width:max-content; }
.clients-scroll:hover { animation-play-state:paused; }
@keyframes clientsScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.client-logo-slot { width:168px; height:78px; display:flex; align-items:center; justify-content:center; padding:.8rem .95rem; border-radius:18px; background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,250,252,.95)); border:1px solid rgba(15,23,42,.08); box-shadow:0 14px 34px rgba(15,23,42,.055), inset 0 1px 0 rgba(255,255,255,.84); transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease; flex:0 0 auto; }
.client-logo-slot--dark { background:linear-gradient(180deg,#1f2937,#111827); border-color:rgba(255,255,255,.08); box-shadow:0 16px 40px rgba(2,6,23,.28), inset 0 1px 0 rgba(255,255,255,.04); }
.client-logo-mark { width:auto; height:auto; object-fit:contain; opacity:.9; transition:transform .28s ease, opacity .28s ease; display:block; flex-shrink:0; transform:scale(var(--client-logo-scale,1)); transform-origin:center center; }
.client-logo-mark--wide { max-width:148px; max-height:38px; }
.client-logo-mark--standard { max-width:132px; max-height:40px; }
.client-logo-mark--compact { max-width:112px; max-height:58px; }
.client-logo-slot:hover { transform:translateY(-2px); border-color:rgba(15,23,42,.12); box-shadow:0 20px 46px rgba(15,23,42,.1), inset 0 1px 0 rgba(255,255,255,.86); }
.client-logo-slot--dark:hover { border-color:rgba(255,255,255,.14); box-shadow:0 20px 46px rgba(2,6,23,.34), inset 0 1px 0 rgba(255,255,255,.06); }
.client-logo-slot:hover .client-logo-mark { opacity:1; transform:scale(calc(var(--client-logo-scale,1) * 1.035)); }
.safety-speakers-directory {
    display: grid;
    gap: 22px;
    padding-top: 10px;
}
.safety-speakers-directory--lift {
    margin-top: -6px;
}
.safety-speakers-directory__filters {
    padding: 16px 18px;
    border: 1px solid rgba(220, 232, 226, .92);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 20px 48px rgba(18, 58, 43, .10);
}
.safety-speakers-filter-form {
    display: grid;
    grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(0, .82fr)) auto;
    gap: 10px;
    align-items: end;
}
.safety-filter-field {
    display: grid;
    gap: 5px;
}
.safety-filter-field span {
    color: var(--safety-muted);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.safety-filter-field input,
.safety-filter-field select {
    width: 100%;
    min-height: 44px;
    padding: 11px 13px;
    border: 1px solid var(--safety-line);
    border-radius: 10px;
    background: #fff;
    color: var(--safety-ink);
    font: inherit;
}
.safety-filter-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.safety-speakers-directory__results p {
    margin: 0;
    color: #41544d;
    font-size: .92rem;
}
.safety-home-speakers-grid-directory {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.safety-empty-state {
    padding: 42px 28px;
    border: 1px solid rgba(220, 232, 226, .92);
    border-radius: 16px;
    background: rgba(255,255,255,.88);
    text-align: center;
    box-shadow: var(--safety-shadow-soft);
}
.safety-empty-state h2 {
    margin: 0 0 10px;
    color: var(--safety-green-dark);
}
.safety-empty-state p {
    margin: 0 auto;
    max-width: 620px;
}
.safety-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.safety-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--safety-line);
    border-radius: 10px;
    background: #fff;
    color: var(--safety-green-dark);
    font-weight: 800;
    box-shadow: var(--safety-shadow-soft);
}
.safety-pagination__btn.is-active,
.safety-pagination__btn:hover {
    background: var(--safety-green);
    border-color: rgba(22, 138, 74, .25);
    color: #fff;
}
.safety-authority-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.safety-authority-grid span,
.safety-feature-list span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(22, 138, 74, .18);
    border-radius: 8px;
    background: #f9fcfa;
    color: var(--safety-green-dark);
    font-weight: 850;
    line-height: 1.25;
}

.safety-section { padding: 50px 0; }
.safety-section-head {
    max-width: var(--safety-read);
    margin-bottom: 24px;
}
.safety-section-head-centered {
    margin-inline: auto;
    text-align: center;
}
.safety-section + .safety-section {
    position: relative;
}
.safety-section + .safety-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1120px, 86vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(18,58,43,0), rgba(18,58,43,.12), rgba(18,58,43,0));
}
.safety-section h2 {
    margin: 0;
    color: var(--safety-green-dark);
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    line-height: 1.1;
    letter-spacing: 0;
}
.safety-grid {
    display: grid;
    gap: 16px;
}
.safety-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.safety-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.safety-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.safety-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.safety-card {
    display: block;
    min-height: 210px;
    padding: clamp(22px, 2vw, 30px);
    background: #fff;
    border: 1px solid var(--safety-line);
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(18, 58, 43, .03);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.safety-card:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 138, 74, .30);
    box-shadow: var(--safety-shadow-soft);
}
.safety-card span,
.safety-mini-label {
    color: var(--safety-green);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.safety-card h2,
.safety-card h3 {
    margin: 12px 0 8px;
    color: var(--safety-green-dark);
    letter-spacing: 0;
}
.safety-card-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--safety-green-2);
    font-weight: 850;
}
.safety-decision-card {
    min-height: 180px;
    background:
        linear-gradient(180deg, #fff, #f9fcfa);
    position: relative;
}
.safety-decision-card-premium {
    overflow: hidden;
}
.safety-decision-card-premium::after {
    content: "";
    position: absolute;
    inset: auto -12% -32% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,223,85,.18), rgba(184,223,85,0));
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
    opacity: .85;
}
.safety-decision-card-premium:hover::after {
    transform: scale(1.08);
    opacity: 1;
}
.safety-decision-card::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--safety-green), var(--safety-lime));
    border-radius: 0 0 8px 8px;
}
.safety-solution-card {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    min-height: 300px;
}
.safety-solution-card .safety-solution-meta {
    margin: 8px 0 0;
    color: var(--safety-green-dark);
    font-weight: 850;
}
.safety-feature-solution {
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: stretch;
    margin-bottom: 18px;
    padding: clamp(16px, 2vw, 22px);
    border: 1px solid rgba(22, 138, 74, .22);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--safety-shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.safety-feature-solution:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 138, 74, .38);
    box-shadow: 0 24px 62px rgba(18, 58, 43, .15);
}
.safety-media-feature {
    min-height: 390px;
}
.safety-feature-copy {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(12px, 2vw, 24px);
}
.safety-feature-copy h3 {
    margin: 0;
    color: var(--safety-green-dark);
    font-size: clamp(2rem, 3.2vw, 3.35rem);
    line-height: 1;
}
.safety-feature-copy p {
    margin: 0;
    max-width: 680px;
}
.safety-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 4px 0 6px;
}
.safety-feature-copy .safety-btn {
    width: fit-content;
}
.safety-pillar-frame {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: clamp(22px, 4vw, 48px);
    align-items: start;
}
.safety-pillar-frame .safety-section-head {
    position: sticky;
    top: 104px;
}
.safety-card-accent {
    border-top: 4px solid var(--safety-green);
}
.safety-problems .safety-section-head {
    margin-bottom: 28px;
}
.safety-band {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100% - var(--safety-max)) / 2));
    padding-right: max(24px, calc((100% - var(--safety-max)) / 2));
    background: linear-gradient(180deg, #edf6f1, #f4faf6);
}
.safety-dark-band {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100% - var(--safety-max)) / 2));
    padding-right: max(24px, calc((100% - var(--safety-max)) / 2));
    background: var(--safety-green-dark);
    color: #fff;
}
.safety-dark-band h2,
.safety-dark-band .safety-kicker { color: #fff; }
.safety-dark-band p { color: rgba(255, 255, 255, .78); }
.safety-chip-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.safety-chip-grid a,
.safety-chip-grid span {
    padding: 10px 13px;
    background: #fff;
    border: 1px solid var(--safety-line);
    border-radius: 999px;
    font-weight: 800;
    color: var(--safety-green-dark);
}
.safety-chip-grid a:hover {
    border-color: rgba(22, 138, 74, .32);
    background: #f9fcfa;
}
.safety-chip-grid-centered {
    justify-content: center;
}
.safety-faq-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}
.safety-faq-item {
    border: 1px solid rgba(220, 232, 226, .92);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--safety-shadow-soft);
    overflow: hidden;
}
.safety-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    color: var(--safety-green-dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    position: relative;
}
.safety-faq-item summary::-webkit-details-marker {
    display: none;
}
.safety-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--safety-green);
    font-size: 1.4rem;
    font-weight: 600;
}
.safety-faq-item[open] summary::after {
    content: "−";
}
.safety-faq-item p {
    margin: 0;
    padding: 0 22px 20px;
    color: #445650;
}
.safety-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}
.safety-steps li {
    counter-increment: steps;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--safety-line);
    border-radius: 8px;
}
.safety-steps li::before {
    content: counter(steps);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--safety-green);
    color: #fff;
    font-weight: 900;
}
.safety-steps strong,
.safety-steps span { display: block; }
.safety-steps span,
.safety-muted {
    color: var(--safety-muted);
    line-height: 1.65;
}
.safety-dark-band .safety-steps li {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
}
.safety-dark-band .safety-steps span { color: rgba(255, 255, 255, .75); }
.safety-dark-band .safety-card {
    color: var(--safety-graphite);
}
.safety-dark-band .safety-card h2,
.safety-dark-band .safety-card h3 {
    color: var(--safety-green-dark);
}
.safety-dark-band .safety-card p {
    color: var(--safety-muted);
}

.safety-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--safety-line);
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(18, 58, 43, .03);
}
.safety-editorial {
    padding: clamp(28px, 5vw, 48px);
    background:
        linear-gradient(120deg, rgba(22, 138, 74, .12), rgba(25, 123, 120, .08)),
        #fff;
    border: 1px solid var(--safety-line);
    border-radius: 8px;
}
.safety-placeholder,
.safety-notice {
    display: grid;
    gap: 10px;
    padding: 24px;
    background: #fff;
    border: 1px dashed rgba(22, 138, 74, .65);
    border-radius: 8px;
    color: var(--safety-muted);
}
.safety-placeholder strong,
.safety-notice strong { color: var(--safety-green-dark); }
.safety-placeholder .safety-btn { width: fit-content; margin-top: 6px; }
.safety-speaker-teaser {
    align-items: stretch;
}
.safety-speaker-card {
    min-height: 184px;
    background:
        linear-gradient(180deg, #ffffff, #f8fcfa);
}
.safety-speaker-card h3 {
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    line-height: 1.18;
}
.safety-speaker-cta {
    margin-top: 16px;
}
.safety-cta {
    text-align: center;
    padding: 56px 20px 72px;
}
.safety-cta-enhanced {
    text-align: center;
    position: relative;
    max-width: 1200px;
    padding: 46px clamp(22px, 4vw, 48px) 54px;
    border: 1px solid rgba(22, 138, 74, .12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 0, rgba(184, 223, 85, .14), transparent 28rem),
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(246,250,247,.96));
    box-shadow: 0 24px 60px rgba(18, 58, 43, .08);
    overflow: hidden;
}
.safety-cta-enhanced::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: min(260px, 34vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(22,138,74,0), rgba(22,138,74,.42), rgba(22,138,74,0));
}
.safety-cta-enhanced h2 {
    max-width: 880px;
    margin-inline: auto;
}
.safety-actions-centered {
    justify-content: center;
}
.safety-cta-points {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 22px auto 0;
}
.safety-cta-points span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(22,138,74,.14);
    color: var(--safety-green-dark);
    font-size: .82rem;
    font-weight: 820;
    box-shadow: 0 10px 26px rgba(18,58,43,.07);
}
.safety-cta p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.safety-quote-layout {
    display: grid;
    grid-template-columns: minmax(320px, .58fr) minmax(0, 1.42fr);
    gap: clamp(24px, 3vw, 44px);
    align-items: start;
}

@keyframes safetyFloatIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes safetyCardLift {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.safety-quote-promise {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}
.safety-quote-promise span {
    display: block;
    padding: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    color: rgba(255, 255, 255, .86);
    line-height: 1.45;
}
.safety-quote-aside {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 14px;
    padding: clamp(24px, 3vw, 34px);
    background: var(--safety-green-dark);
    color: #fff;
    border-radius: 8px;
    box-shadow: var(--safety-shadow-soft);
}
.safety-quote-aside h2 {
    color: #fff;
}
.safety-quote-aside p,
.safety-quote-aside .safety-muted { color: rgba(255, 255, 255, .78); }
.safety-form {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 3vw, 38px);
    background: #fff;
    border: 1px solid var(--safety-line);
    border-radius: 8px;
    box-shadow: var(--safety-shadow);
}
.safety-form-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--safety-line);
}
.safety-form-section:last-of-type { border-bottom: 0; padding-bottom: 0; }
.safety-form-section h2,
.safety-form-section p {
    grid-column: 1 / -1;
}
.safety-form-section h2 {
    margin: 0;
    font-size: 1.08rem;
}
.safety-form-section p { margin: -6px 0 4px; }
.safety-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
    color: var(--safety-green-dark);
    line-height: 1.35;
}
.safety-form input,
.safety-form select,
.safety-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cbdad2;
    border-radius: 8px;
    padding: 11px 12px;
    font: inherit;
    color: var(--safety-graphite);
    background: #fbfdfc;
}
.safety-form textarea { resize: vertical; }
.safety-form input:hover,
.safety-form select:hover,
.safety-form textarea:hover {
    border-color: rgba(22, 138, 74, .38);
}
.safety-form-wide { grid-column: 1 / -1; }

.safety-footer-wrap {
    margin-top: 24px;
    background: #fff;
    border-top: 1px solid var(--safety-line);
}
.safety-footer {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(120px, .6fr));
    gap: 24px;
    padding: 34px 0 42px;
}
.safety-footer-brand {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.safety-footer p {
    margin: 14px 0 0;
    color: var(--safety-muted);
    line-height: 1.6;
}
.safety-footer nav,
.safety-footer-col {
    display: grid;
    gap: 9px;
    align-content: start;
}
.safety-footer h2 {
    margin: 0 0 4px;
    color: var(--safety-green-dark);
    font-size: .86rem;
}
.safety-footer span,
.safety-footer a { color: var(--safety-muted); }
.safety-footer a:hover { color: var(--safety-green-dark); }

@media (max-width: 1100px) {
    .safety-grid-4,
    .safety-grid-5,
    .safety-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .safety-quote-layout { grid-template-columns: 1fr; }
    .safety-quote-aside { position: static; }
    .safety-pillar-frame { grid-template-columns: 1fr; }
    .safety-pillar-frame .safety-section-head { position: static; }
    .safety-feature-solution { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .safety-header {
        align-items: flex-start;
        flex-direction: column;
        position: relative;
        top: auto;
    }
    .safety-nav {
        width: 100%;
        justify-content: flex-start;
    }
    .safety-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .safety-hero-visual { min-height: auto; }
    .safety-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .safety-header {
        position: sticky;
        top: 8px;
        z-index: 28;
        gap: 12px;
        padding: 10px 14px;
        width: min(100% - 20px, 1440px);
        margin-top: 10px;
        border-radius: 12px;
    }
    .safety-brand { min-width: 0; }
    .safety-brand img {
        width: 40px;
        height: 31px;
    }
    .safety-brand-text strong { font-size: .92rem; }
    .safety-brand-text small { font-size: .61rem; }
    .safety-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
    .safety-header[data-nav-open="true"] .safety-nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .safety-header[data-nav-open="true"] .safety-nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .safety-header[data-nav-open="true"] .safety-nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .safety-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height .24s ease, opacity .2s ease, margin-top .2s ease;
        margin-top: 0;
    }
    .safety-header[data-nav-open="true"] .safety-nav {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        margin-top: 8px;
    }
    .safety-nav a {
        min-height: 39px;
        padding: 8px 7px;
        text-align: center;
        font-size: .8rem;
    }
    .safety-nav .safety-nav-cta { grid-column: 1 / -1; }
    .safety-hero,
    .safety-page-hero,
    .safety-section,
    .safety-footer {
        width: min(100% - 24px, var(--safety-max));
    }
    .safety-hero { padding-top: 18px; }
    .safety-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.15rem);
        line-height: 1.03;
    }
    .safety-hero-panel,
    .safety-trust,
    .safety-grid-2,
    .safety-grid-3,
    .safety-grid-4,
    .safety-grid-5,
    .safety-steps,
    .safety-form-section,
    .safety-footer {
        grid-template-columns: 1fr;
    }
    .safety-media-hero,
    .safety-media-feature {
        min-height: 340px;
    }
    .safety-hero-panel {
        margin-top: -48px;
        padding: 0 12px 12px;
        gap: 10px;
    }
    .safety-hero-panel span {
        min-height: 118px;
        padding: 18px 18px 18px 76px;
    }
    .safety-hero-panel span::before {
        left: 18px;
        top: 22px;
        width: 42px;
        height: 42px;
    }
    .safety-hero-panel span::after {
        left: 32px;
        top: 36px;
        width: 14px;
        height: 14px;
    }
    .safety-hero-image-badge {
        left: 16px;
        top: 16px;
        max-width: 260px;
        padding: 13px 15px 13px 52px;
    }
    .safety-hero-image-badge::before {
        left: 15px;
        width: 26px;
        height: 26px;
    }
    .safety-hero-image-badge::after {
        left: 24px;
    }
    .safety-hero-proof {
        grid-template-columns: 1fr;
    }
    .safety-speakers-showcase__head h2 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }
    .safety-trust span { padding: 13px; }
    .safety-split {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .safety-form { padding: 18px; }
    .safety-actions .safety-btn,
    .safety-form .safety-btn { width: 100%; }
    .safety-speakers-filter-form { grid-template-columns: 1fr; }
    .safety-filter-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1400px) {
    .safety-hero {
        width: min(1560px, calc(100% - 64px));
    }
}

@media (max-width: 380px) {
    .safety-nav a {
        font-size: .76rem;
        padding-left: 6px;
        padding-right: 6px;
    }
    .safety-brand-text small { max-width: 220px; }
}
