.feature-simple {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: clamp(42px, 5vw, 64px) auto 0;
    padding: clamp(26px, 3.5vw, 40px);
    text-align: center;
}

.feature-simple h2 {
    max-width: 780px;
    margin: 0 auto 44px;
    color: var(--text-dark);
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.048em;
}

.feature-simple__line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-simple__line::before {
    content: '';
    position: absolute;
    left: 4%;
    right: 4%;
    top: 26px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(171, 135, 80, 0) 0%,
        rgba(171, 135, 80, 0.52) 12%,
        var(--gold-dark) 30%,
        var(--gold) 50%,
        var(--gold-dark) 70%,
        rgba(171, 135, 80, 0.52) 88%,
        rgba(171, 135, 80, 0) 100%);
    box-shadow: 0 0 20px rgba(206, 184, 152, 0.34);
}

.feature-simple__line article {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: 52px minmax(92px, auto);
    gap: 16px;
    justify-items: center;
    align-items: center;
    padding: 0 8px;
}

.feature-simple__line span {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(171, 135, 80, 0.46);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 16px 34px rgba(16, 24, 23, 0.12), inset 0 0 0 7px rgba(var(--primary-rgb), 0.08);
    transform-origin: center center;
    transition: transform 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
}

.feature-simple__line span::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.feature-simple__line strong {
    width: 100%;
    max-width: 260px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 18px;
    border: 1px solid rgba(206, 184, 152, 0.36);
    border-radius: 18px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.38;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 1s ease, border-color 1s ease, box-shadow 1s ease, background 1s ease;
}

.feature-simple__line article:hover span,
.feature-simple__line article.is-active span {
    transform: scale(1.1);
    border-color: rgba(46, 125, 50, 0.48);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(27, 94, 32, 0.24), inset 0 0 0 7px rgba(255, 255, 255, 0.16);
}

.feature-simple__line article:hover span::before,
.feature-simple__line article.is-active span::before {
    opacity: 1;
}

/* Shared alternating process tree */
.process-tree {
    --tree-gold: #AB8750;
    --tree-gold-bright: #D4AF37;
    --trunk-width: 4px;
    --branch-thick: 3px;
    --branch-len: 120px;
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: 0 auto -24px;
    padding-bottom: 50px;
}

.process-tree::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: -190px;
    z-index: 1;
    width: var(--trunk-width);
    border-radius: 4px;
    background: linear-gradient(180deg,
        rgba(171, 135, 80, 0) 0%,
        var(--tree-gold) 8%,
        var(--tree-gold) 80%,
        rgba(171, 135, 80, 0) 100%);
    transform: translateX(-50%);
}

.process-tree article {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 240px;
    align-items: end;
    min-height: 110px;
    margin-bottom: 24px;
}

.process-tree__branch {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: var(--branch-len);
    height: var(--branch-thick);
    border-radius: 2px;
    background: var(--tree-gold);
    transition: all 1.5s cubic-bezier(0.25, 1, 0.33, 1);
}

.process-tree__branch::after {
    content: '';
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 14px;
    height: 14px;
    border: 3.5px solid var(--tree-gold);
    border-radius: 50%;
    background: #ffffff;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(171, 135, 80, 0.25);
    transition: all 1.5s cubic-bezier(0.25, 1, 0.33, 1);
}

.process-tree article:nth-child(odd) .process-tree__content {
    grid-column: 1;
    justify-self: end;
    margin-right: 25px;
    text-align: right;
}

.process-tree article:nth-child(odd) .process-tree__branch {
    right: 50%;
    transform: rotate(14deg);
    transform-origin: right center;
}

.process-tree article:nth-child(odd) .process-tree__branch::after {
    left: -7px;
}

.process-tree article:nth-child(even) .process-tree__content {
    grid-column: 2;
    justify-self: start;
    margin-left: 25px;
    text-align: left;
}

.process-tree article:nth-child(even) .process-tree__branch {
    left: 50%;
    transform: rotate(-14deg);
    transform-origin: left center;
}

.process-tree article:nth-child(even) .process-tree__branch::after {
    right: -7px;
}

.process-tree__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 410px;
    min-height: 122px;
    display: flex;
    align-items: center;
    padding: 26px 28px 24px;
    margin-bottom: 40px;
    border: 1.5px solid rgba(171, 135, 80, 0.34);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: 0 12px 30px rgba(64, 48, 28, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.42s ease, box-shadow 0.42s ease, background 0.42s ease;
}

.process-tree__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -140%;
    z-index: 1;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-24deg);
    transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.process-tree__content::after {
    content: attr(data-label);
    position: absolute;
    top: 14px;
    left: 24px;
    z-index: 2;
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.76;
}

.process-tree article:nth-child(odd) .process-tree__content::after {
    right: 24px;
    left: auto;
}

.process-tree__content p {
    position: relative;
    z-index: 2;
    margin: 12px 0 0;
    color: var(--text-dark);
    font-size: 15.5px;
    font-weight: 650;
    line-height: 1.62;
    letter-spacing: -0.012em;
}

.process-tree article:hover .process-tree__content,
.process-tree article.is-auto-active .process-tree__content {
    transform: translateY(-5px);
    border-color: rgba(171, 135, 80, 0.62);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(64, 48, 28, 0.13), 0 0 0 1px rgba(206, 184, 152, 0.14);
}

.process-tree article:hover .process-tree__content::before,
.process-tree article.is-auto-active .process-tree__content::before {
    left: 160%;
}

.process-tree article:hover .process-tree__branch::after,
.process-tree article.is-auto-active .process-tree__branch::after {
    background: var(--tree-gold-bright);
    border-color: #ffffff;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.18), 0 0 14px rgba(212, 175, 55, 0.42);
    transform: translateY(-50%) scale(1.28);
}

/* Shared dark stats/access panel */
.access-duty {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
    gap: clamp(26px, 4vw, 54px);
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 36px;
}

.access-duty h2 {
    max-width: 620px;
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.058em;
}

.access-duty p:not(.eyebrow) {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.72;
}

.access-stats {
    display: grid;
    gap: 14px;
}

.access-stats article {
    position: relative;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 3px solid var(--gold);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    overflow: hidden;
    transition: transform 0.26s ease, background 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.access-stats article::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 92% 12%, rgba(var(--primary-rgb), 0.22), transparent 36%), rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.access-stats article > * {
    position: relative;
    z-index: 1;
}

.access-stats article:hover,
.access-stats article.is-auto-active {
    transform: translateX(5px);
    border-color: rgba(206, 184, 152, 0.34);
    border-left-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.access-stats article:hover::before,
.access-stats article.is-auto-active::before {
    opacity: 1;
}

.access-stats strong {
    display: block;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.access-stats span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 1199px) {
    .feature-simple__line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }

    .feature-simple__line::before {
        display: none;
    }

    .access-duty {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .process-tree {
        max-width: 760px;
        margin-bottom: -86px;
        padding-bottom: 106px;
        padding-left: 20px;
    }

    .process-tree::before {
        left: 37px;
        bottom: -160px;
        transform: none;
    }

    .process-tree article {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 18px;
        min-height: auto;
        margin-bottom: 30px;
        align-items: start;
    }

    .process-tree article .process-tree__branch {
        top: 20px;
        bottom: auto;
        left: 20px !important;
        right: auto !important;
        width: 40px;
        transform: rotate(-10deg) !important;
        transform-origin: left center !important;
    }

    .process-tree article .process-tree__branch::after {
        right: -7px !important;
        left: auto !important;
    }

    .process-tree article:nth-child(odd) .process-tree__content,
    .process-tree article:nth-child(even) .process-tree__content {
        grid-column: 2;
        justify-self: stretch;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .process-tree article:nth-child(odd) .process-tree__content::after,
    .process-tree article:nth-child(even) .process-tree__content::after {
        right: auto;
        left: 24px;
    }
}

@media (max-width: 768px) {
    .feature-simple {
        padding: 24px;
    }

    .feature-simple__line {
        grid-template-columns: 1fr;
    }

    .feature-simple__line article {
        grid-template-columns: 52px minmax(0, 1fr);
        grid-template-rows: auto;
        justify-items: start;
        text-align: left;
    }

    .feature-simple__line strong {
        max-width: none;
        min-height: 74px;
        text-align: left;
    }

    .access-duty {
        padding: 26px;
        border-radius: 26px;
    }
}

/* Orbit */

.orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orbit article {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(206, 184, 152, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 900;
    box-shadow: var(--shadow-light);
    animation: orbitFloat 4s ease-in-out infinite;
}

.orbit article i {
    color: var(--primary-dark);
}

@keyframes orbitFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .orbit {
        position: relative;
        inset: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 24px;
        order: 2;
    }

    .orbit article,
    .orbit [class*="orbit__item"] {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        animation: none;
        display: none;
    }
}