.safeguarding-experience-container-ea773421 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1F2937;
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* COMPACT SPACING STYLINGS */
.safeguarding-experience-container-ea773421 section {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ENTRANCE ANIMATION PRESETS */
.se-anim-fade-up .se-scroll-trigger {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.se-anim-fade-up .se-scroll-trigger.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.se-anim-blur-reveal .se-scroll-trigger {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(15px);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}
.se-anim-blur-reveal .se-scroll-trigger.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.se-anim-scale-up .se-scroll-trigger {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.se-anim-scale-up .se-scroll-trigger.is-visible {
    opacity: 1;
    transform: scale(1);
}

.se-anim-fade-in .se-scroll-trigger {
    opacity: 0;
    transition: opacity 0.6s ease;
}
.se-anim-fade-in .se-scroll-trigger.is-visible {
    opacity: 1;
}

/* General Layout helpers */
.se-title {
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.se-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.se-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.se-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.se-btn-primary {
    background-color: #0B7A86;
    border: 1px solid #0B7A86;
    color: #FFFFFF;
}

.se-btn-primary:hover {
    background-color: #C94B3C;
    border-color: #C94B3C;
    transform: translateY(-2px);
}

.se-btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(0,0,0,0.12);
    color: #1F2937;
}

.se-btn-secondary:hover {
    background-color: rgba(0,0,0,0.03);
}

.se-section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 35px auto;
}

/* 1. HERO SECTION */
.se-hero-title {
    font-size: 42px;
    line-height: 1.15;
}
.se-hero-desc {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 24px;
}
.se-hero-btns {
    display: flex;
    gap: 12px;
}
.se-hero-media-wrapper {
    position: relative;
    border-radius: 16px;
}
.se-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
}
.se-circle-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.12;
    z-index: 1;
}
.se-hero-floating-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    border-radius: 25px;
    padding: 6px 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.floating-badge-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* 2. EDITORIAL STATEMENT */
.se-intro-section {
    background-color: #F8FAFC;
    border-radius: 20px;
    margin-bottom: 40px;
}
.se-section-wrap {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
}
.se-quote-mark {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 90px;
    line-height: 1;
    opacity: 0.12;
    font-family: serif;
}
.se-quote-text {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
    color: #1F2937;
}

/* 3. FIVE COMMITMENTS PANELS */
.se-commitments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.se-commitment-panel {
    background-color: #F8FAFC;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}
.se-commitment-panel:hover, .se-commitment-panel.active {
    background-color: #FFFFFF;
    box-shadow: 0 15px 30px rgba(11, 122, 134, 0.06);
    transform: translateY(-3px);
    border-color: rgba(11, 122, 134, 0.12);
}
.panel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.panel-number {
    font-size: 26px;
    font-weight: 800;
}
.panel-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.panel-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.panel-short-desc {
    font-size: 13px;
    color: #4B5563;
}
.panel-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 10px;
    font-size: 13px;
    color: #6B7280;
}
.se-commitment-panel.active .panel-expanded-content {
    max-height: 150px;
}
.panel-expand-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0B7A86;
}

/* 4. CONSTELLATION COMMITMENTS (Floating system) */
.constellation-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}
.constellation-orbit {
    position: relative;
    width: 360px;
    height: 360px;
    border: 1px dashed rgba(11, 122, 134, 0.15);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.const-center {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(11, 122, 134, 0.18);
}
.const-center-icon {
    font-size: 24px;
}
.const-node {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translate(-50%, -50%);
    z-index: 5;
}
/* Radial layout placements */
.const-node {
    top: calc(50% + 180px * sin(var(--node-angle)));
    left: calc(50% + 180px * cos(var(--node-angle)));
}
.const-node:hover, .const-node.active {
    border-color: #C94B3C;
    background: #0B7A86;
    color: #FFFFFF;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 16px rgba(11, 122, 134, 0.12);
}
.const-icon-wrap svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.const-node-title {
    position: absolute;
    bottom: -22px;
    white-space: nowrap;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4B5563;
    pointer-events: none;
}
.constellation-display-card {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #0B7A86;
}
.const-detail-item {
    display: none;
}
.const-detail-item.active {
    display: block;
    animation: fadeInStep 0.4s ease forwards;
}
.const-detail-heading-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.const-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.const-detail-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.const-detail-desc {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.5;
}

/* 5. PRINCIPLES CIRCLE */
.se-circular-outer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    margin-top: 30px;
}
.se-circular-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px dashed rgba(11, 122, 134, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.se-circular-center {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    z-index: 10;
}
.se-principle-node {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #F8FAFC;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.se-principle-node {
    top: calc(50% + 180px * sin(var(--node-angle)));
    left: calc(50% + 180px * cos(var(--node-angle)));
}
.se-principle-node:hover, .se-principle-node.active {
    background: #0B7A86;
    color: #FFFFFF;
}
.se-principle-node .node-title {
    position: absolute;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    color: #4B5563;
    white-space: nowrap;
}
.se-principle-node[data-index="0"] .node-title { left: 50px; }
.se-principle-node[data-index="1"] .node-title { top: 50px; }
.se-principle-node[data-index="2"] .node-title { right: 50px; }
.se-principle-node[data-index="3"] .node-title { right: 50px; }
.se-principle-node[data-index="4"] .node-title { right: 50px; }
.se-principle-node[data-index="5"] .node-title { bottom: 50px; }
.se-principle-node[data-index="6"] .node-title { left: 50px; }
.se-principle-node[data-index="7"] .node-title { left: 50px; }

.se-principle-panel {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 16px;
    flex-grow: 1;
}
.se-principle-detail-content {
    display: none;
}
.se-principle-detail-content.active {
    display: block;
    animation: fadeInStep 0.4s ease forwards;
}

/* 6. ECOSYSTEM ARCHITECTURE infogram style */
.ecosystem-architecture-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    max-width: 800px;
    margin: 30px auto 0 auto;
}
.ecosystem-layer {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.ecosystem-layer:hover {
    border-color: #0B7A86;
    box-shadow: 0 10px 20px rgba(11, 122, 134, 0.05);
    transform: scale(1.01);
}
.layer-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin: 0;
}
.layer-nodes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.eco-node-pill {
    background: #F3F4F6;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    transition: background 0.3s ease;
}
.eco-node-pill:hover {
    background: #E5E7EB;
}
.eco-dot {
    width: 6px;
    height: 6px;
    background: #0B7A86;
    border-radius: 50%;
}
.eco-connector-line {
    width: 2px;
    height: 15px;
    background: #E5E7EB;
    margin: 0 auto;
}

/* 7. JOURNEY STEP TRACK */
.se-journey-horizontal-container {
    position: relative;
    margin-top: 40px;
}
.se-journey-scroll-line-bg {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #F1F5F9;
    z-index: 1;
}
.se-journey-scroll-line-fill {
    width: 10%;
    height: 100%;
}
.se-journey-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.se-journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px;
    text-align: center;
}
.step-icon-outer {
    position: relative;
    width: 54px;
    height: 54px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.step-icon-inner svg {
    width: 18px;
    height: 18px;
    fill: #9CA3AF;
}
.step-num-bubble {
    position: absolute;
    top: -4px;
    right: -4px;
    color: #FFFFFF;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.se-journey-step.active .step-icon-outer {
    border-color: #0B7A86;
    box-shadow: 0 8px 16px rgba(11, 122, 134, 0.1);
}
.se-journey-step.active .step-icon-inner svg {
    fill: #0B7A86;
}

/* 8. PARTNERS */
.se-partner-img-wrapper {
    position: relative;
}
.se-partner-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
}
.se-img-corner-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    z-index: -1;
}
.se-partner-checklist {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.se-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #F1F5F9;
}

/* 9. REPORT CONCERN HERO CTA CARD */
.se-report-cta-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(11, 122, 134, 0.05);
    border: 1px solid rgba(11, 122, 134, 0.08);
    max-width: 800px;
    margin: 0 auto;
}
.se-shield-decor-icon {
    font-size: 38px;
    margin-bottom: 15px;
}
.card-title {
    font-size: 30px;
}
.card-desc {
    font-size: 15px;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto 24px auto;
}

/* 10. TRANSPARENT PROCESS RING DESIGN */
.transparency-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 45px;
    align-items: center;
    margin-top: 40px;
}
.trans-ring-left {
    display: flex;
    justify-content: center;
}
.ring-system {
    position: relative;
    width: 210px;
    height: 210px;
}
.ring-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}
.ring-track {
    fill: none;
    stroke: #F3F4F6;
    stroke-width: 8px;
}
.ring-fill {
    fill: none;
    stroke: #0B7A86;
    stroke-width: 8px;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.4s ease;
}
.ring-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ring-active-num {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}
.ring-active-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4B5563;
}
.ring-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ring-dot.active {
    background: #C94B3C;
}

.trans-steps-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.trans-step-card {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.trans-step-card:hover, .trans-step-card.active {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border-left-color: #0B7A86;
    transform: translateX(3px);
}
.trans-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.trans-badge {
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
}
.trans-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.trans-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.trans-card-desc {
    font-size: 13px;
    color: #4B5563;
    margin: 0;
}

/* 11. OTHER CONTACTS */
.se-contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.se-contact-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.se-contact-card:hover {
    background: #FFFFFF;
    box-shadow: 0 12px 24px rgba(0,0,0,0.04);
    transform: translateY(-3px);
}
.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-bottom: 12px;
}
.contact-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-desc {
    font-size: 12px;
    color: #4B5563;
    margin-bottom: 12px;
}
.contact-info-link {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* 12. DOCUMENT DOWNLOADS */
.se-docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.se-doc-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}
.se-doc-card:hover {
    border-color: #0B7A86;
    box-shadow: 0 12px 24px rgba(11, 122, 134, 0.04);
}
.doc-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
}
.doc-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.doc-desc {
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 15px;
}
.doc-download-btn {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* 13. WORD CLOUD */
.se-wordcloud-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.se-word-pill {
    background: #F3F4F6;
    color: #1F2937;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
}
.se-word-pill:hover {
    color: #FFFFFF;
    transform: scale(1.04);
}

/* 14. FINAL COMMITMENT */
.se-final-statement-section {
    text-align: center;
    background: radial-gradient(circle at center, rgba(11, 122, 134, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
}
.final-shield {
    font-size: 48px;
    margin-bottom: 15px;
}
.final-text {
    font-size: 30px;
    max-width: 600px;
    margin: 0 auto 20px auto;
}
.final-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 700;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MOBILE RESPONSIVE ADAPTATIONS */
@media (max-width: 1024px) {
    .se-commitments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .se-contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .se-grid-2, .constellation-wrapper, .transparency-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .se-hero-title {
        font-size: 30px;
    }
    .se-commitments-grid {
        grid-template-columns: 1fr;
    }
    .constellation-orbit, .se-circular-wrapper {
        width: 290px;
        height: 290px;
    }
    .const-node {
        top: calc(50% + 140px * sin(var(--node-angle)));
        left: calc(50% + 140px * cos(var(--node-angle)));
    }
    .se-principle-node {
        top: calc(50% + 140px * sin(var(--node-angle)));
        left: calc(50% + 140px * cos(var(--node-angle)));
    }
    .se-principle-node .node-title {
        display: none;
    }
    .se-circular-outer {
        flex-direction: column;
    }
    .ecosystem-layer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    .layer-nodes {
        justify-content: center;
    }
    .se-journey-track {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        padding-left: 20px;
    }
    .se-journey-scroll-line-bg {
        top: 0;
        bottom: 0;
        left: 45px;
        width: 3px;
        height: auto;
    }
    .se-contacts-grid, .se-docs-grid {
        grid-template-columns: 1fr;
    }
}
