/* ==========================================================================
   Toonz About Hero Section Premium Styles (2-Column Wide Layout)
   ========================================================================== */

.toonz-about-hero-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 50px;
    color: #fff;
    font-family: 'Outfit', 'Inter', sans-serif;
    gap: 60px;
    box-sizing: border-box;
}

/* ==========================================================================
   Left Column: Typography & Text Layout
   ========================================================================== */

.toonz-ah-left {
    flex: 1.6;
    min-width: 350px;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.toonz-ah-eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toonz-ah-line {
    width: 25px;
    height: 2px;
    background-color: #E87722;
}

.toonz-ah-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E87722;
}

.toonz-ah-headline {
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1.5px;
    color: #ffffff;
}

/* Horizontal Accent Divider (From design screenshot) */
.toonz-ah-headline::after {
    content: '';
    display: block;
    width: 45px;
    height: 4px;
    background-color: #E87722;
    margin-top: 25px;
}

.toonz-ah-subtexts {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 5px;
}

.toonz-ah-subtext1 {
    font-size: 19px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    color: #ffffff;
}

.toonz-ah-subtext2 {
    font-size: 15px;
    line-height: 1.6;
    color: #A0A0A0;
    margin: 0;
}

.toonz-ah-subtext3 {
    font-size: 17px;
    line-height: 1.6;
    color: #E87722;
    margin: 0;
    font-weight: 700;
}

/* ==========================================================================
   Scroll Indicator
   ========================================================================== */

.toonz-ah-scroll-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 15px;
    margin-top: 20px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toonz-ah-scroll-btn:hover {
    opacity: 1;
    transform: translateY(2px);
}

.toonz-ah-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.toonz-ah-wheel {
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    margin-top: 6px;
    animation: toonz-ah-scroll-wheel 1.6s infinite ease-in-out;
}

@keyframes toonz-ah-scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}

.toonz-ah-scroll-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

/* ==========================================================================
   Right Column: Statistical Counters
   ========================================================================== */

.toonz-ah-right {
    flex: 1;
    min-width: 230px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 60px;
    box-sizing: border-box;
}

.toonz-ah-counter-item {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toonz-ah-counter-item:first-child {
    padding-top: 0;
}

.toonz-ah-counter-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.toonz-ah-counter-number-wrap {
    font-size: clamp(36px, 3.5vw, 46px);
    font-weight: 800;
    color: #E87722;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    line-height: 1;
    letter-spacing: -0.5px;
}

.toonz-ah-counter-label {
    font-size: 13px;
    font-weight: 500;
    color: #A0A0A0;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .toonz-about-hero-wrapper {
        padding: 100px 5vw;
        gap: 40px;
    }

    .toonz-ah-left {
        flex: 1.5;
        max-width: 58%;
    }

    .toonz-ah-right {
        flex: 0.9;
        max-width: 38%;
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .toonz-about-hero-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 60px 24px;
        gap: 50px;
    }

    .toonz-ah-left {
        max-width: 100%;
        min-width: 100%;
    }

    .toonz-ah-right {
        border-left: none;
        padding-left: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
        width: 100%;
        flex: none;
        max-width: 100%;
    }

    .toonz-ah-counter-item {
        border-bottom: none;
        padding: 0;
        flex: 1 1 140px;
    }
}

/* ==========================================================================
   Scroll-triggered Entrance Animations (Staggered Stretches)
   ========================================================================== */

/* Base State */
.toonz-ah-anim {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Stagger transitions for Left Content */
.toonz-about-hero-wrapper.is-visible .toonz-ah-eyebrow-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-headline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-subtext1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-subtext2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-subtext3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-scroll-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Stagger transitions for right counters */
.toonz-about-hero-wrapper.is-visible .toonz-ah-counter-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-counter-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-counter-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-counter-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}

.toonz-about-hero-wrapper.is-visible .toonz-ah-counter-item:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.85s;
}