#about-hero {
    position: relative;
    background: var(--color1301);
    padding: 70px 32px 110px;
    overflow: hidden;
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hero-inner > span a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color1302);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.hero-inner > h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-family: Sahel-Bold;
    color: var(--color1303);
    line-height: 1.15;
    margin-bottom: 12px;
}
.hero-inner > h2 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--color1302);
    margin-bottom: 24px;
}
.hero-inner > p {
    font-size: 1rem;
    line-height: 2;
    color: color-mix(in srgb, var(--color1303) 70%, transparent);
    max-width: 640px;
    margin: 0 auto;
}
.hero-thumb {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 40px auto -80px;
    border-radius: 40px 0;
    overflow: hidden;
    box-shadow: 0 24px 60px color-mix(in srgb, var(--color1301) 40%, transparent);
}
.hero-thumb > img {
    width: 100%;
}

@media (max-width: 900px) {
    #about-hero::before {
        font-size: 9rem;
    }
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-thumb {
        margin-bottom: -60px;
        border-radius: 26px 0px;
    }
    .content-steps {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 40px;
    }
    .content-steps::before {
        display: none;
    }
    .step-item {
        text-align: right;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 500px) {
    #about-hero {
        padding: 50px 20px 90px;
    }
    #about-content {
        padding: 30px 20px 10px;
    }
    .story-tags > span {
        width: 48%;
    }
    .content-story > p {
        text-align: justify;
    }
}
/* ===== Story ===== */
.journey-story {
    position: relative;
    padding: 50px 0 20px;
    direction: rtl;
    overflow: hidden;
}
.journey-container {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
}
.journey-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
.journey-header h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -2px;
    background: color-mix(in srgb, var(--color1301) 4%, transparent);
    padding: 20px 0;
    border-radius: 10px;
}
.journey {
    position: relative;
    width: 100%;
}
.journey::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--color1302) 75%, #000) 5%, color-mix(in srgb, var(--color1302) 75%, #000) 95%, transparent 100%);
}
.journey-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
    align-items: center;
    width: 100%;
    margin-bottom: 110px;
}
.journey-item:last-child {
    margin-bottom: 0;
}
.journey-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: color-mix(in srgb, var(--color1301) 5%, transparent);
    box-shadow: 0 18px 50px color-mix(in srgb, var(--color1301) 5%, transparent);
}
.journey-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}
.journey-item:hover .journey-image img {
    transform: scale(1.035);
}
.journey-node {
    position: relative;
    z-index: 5;
    width: 58px;
    height: 58px;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color1302) 75%, #000);
    color: var(--color1303);
    border: 7px solid #ffffff;
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--color1301) 5%, transparent), 0 12px 35px color-mix(in srgb, var(--color1301) 20%, transparent);
    font-size: 13px;
    font-weight: 700;
}
.journey-info {
    max-width: 470px;
    padding: 0 5px;
}
.journey-info-small {
    display: block;
    margin-bottom: 10px;
    color: var(--color1302);
    font-size: 13px;
    font-weight: 700;
}
.journey-info h3 {
    margin: 0 0 15px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.3;
    font-weight: 800;
}
.journey-info p {
    margin: 0;
    color: color-mix(in srgb, var(--color1301) 70%, transparent);
    font-size: 15px;
    line-height: 2;
    text-align: justify;
}
.journey-item:nth-child(odd) .journey-image {
    grid-column: 1;
    grid-row: 1;
}
.journey-item:nth-child(odd) .journey-node {
    grid-column: 2;
    grid-row: 1;
}
.journey-item:nth-child(odd) .journey-info {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
    justify-self: start;
    padding-left: 0;
}
.journey-item:nth-child(even) .journey-info {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    padding-right: 0;
}
.journey-item:nth-child(even) .journey-node {
    grid-column: 2;
    grid-row: 1;
}
.journey-item:nth-child(even) .journey-image {
    grid-column: 3;
    grid-row: 1;
}
.journey-footer {
    position: relative;
    margin-top: 40px;
    text-align: center;
}
.journey-footer span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--color1302) 10%, transparent);
    color: color-mix(in srgb, var(--color1302) 75%, #000);
    font-size: 14px;
    font-weight: 700;
}
@media (max-width: 900px) {
    .journey-container {
        width: min(100% - 40px, 700px);
    }
    .journey-item {
        grid-template-columns: minmax(0, 1fr) 65px minmax(0, 1fr);
        margin-bottom: 80px;
    }
    .journey-node {
        width: 52px;
        height: 52px;
        border-width: 6px;
    }
    .journey-info {
        padding: 0 10px !important;
    }
    .journey-info h3 {
        font-size: 25px;
    }
    .journey-info p {
        font-size: 14px;
    }
}
@media (max-width: 700px) {
    .journey-story {
        padding-top: 32px;
    }
    .journey-container {
        width: min(100% - 35px, 600px);
    }
    .journey-header {
        margin-bottom: 30px;
    }
    .journey-header h2 {
        font-size: 20px;
        letter-spacing: -1px;
    }
    .journey::before {
        left: 24px;
        transform: none;
    }
    .journey-item {
        display: block;
        width: 100%;
        margin-bottom: 70px;
        padding-left: 60px;
    }
    .journey-node {
        position: absolute;
        top: 0;
        left: 24px;
        width: 48px;
        height: 48px;
        transform: translateX(-50%);
        border-width: 5px;
        font-size: 11px;
    }
    .journey-item:nth-child(odd) .journey-image, .journey-item:nth-child(even) .journey-image {
        display: block;
        width: 100%;
        margin: 0 0 25px;
        padding: 0;
    }
    .journey-item:nth-child(odd) .journey-info, .journey-item:nth-child(even) .journey-info {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 !important;
        text-align: right;
        justify-self: auto;
    }
    .journey-image {
        border-radius: 16px;
    }
    .journey-info h3 {
        font-size: 25px;
        margin-bottom: 12px;
    }
    .journey-info p {
        font-size: 14px;
        line-height: 2;
    }
}