#coop-wp-root {
    position: relative;
    width: 100%;
    padding: 120px 24px;
    background: #000;
    color: #fff;
    font-family: var(--primary-font);
    overflow: hidden;
    text-align: center;
}

#coop-wp-root .coop-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#coop-wp-root .coop-label {
    font-family: var(--primary-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: rgba(160, 195, 255, 1);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#coop-wp-root .coop-title {
    /* Dấu tiếng Việt: nền gradient (background-clip:text) chỉ tô trong hộp nội dung,
       dấu chồng (Ố, Ệ, Ậ…) vượt lên trên hộp nên bị mất màu → trông như bị cắt.
       Nới hộp bằng padding rồi bù margin âm: chữ đủ chỗ, bố cục không đổi. */
    padding-block: 0.22em 0.14em;
    margin-block-start: -0.22em;

    font-family: var(--primary-font);
    font-size: clamp(24px, 5.2vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: calc(24px - 0.14em);
    background: linear-gradient(180deg, #fff 30%, rgba(160, 195, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

#coop-wp-root .coop-title-part {
    display: block;
    /* Mobile: break line */
}

@media (min-width: 768px) {
    #coop-wp-root .coop-title-part {
        display: inline;
        /* Desktop: single line */
        margin-left: 8px;
        /* Spacing between sentences */
    }
}

#coop-wp-root .coop-divider {
    width: 60px;
    height: 3px;
    margin: 0 auto 48px;
    background: linear-gradient(90deg, #8b5cf6, #60a5fa);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s ease 0.2s;
}

/* CTA buttons — Call & Messenger */
#coop-wp-root .coop-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: -16px 0 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

#coop-wp-root .coop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 100px;
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s ease;
}

#coop-wp-root .coop-btn svg {
    flex-shrink: 0;
}

#coop-wp-root .coop-btn-call {
    background: linear-gradient(135deg, #00c853, #00e676);
    box-shadow: 0 6px 24px rgba(0, 200, 83, 0.35);
}

#coop-wp-root .coop-btn-messenger {
    background: linear-gradient(135deg, #0084ff, #00b2ff);
    box-shadow: 0 6px 24px rgba(0, 132, 255, 0.35);
}

#coop-wp-root .coop-btn:hover {
    transform: translateY(-3px) scale(1.04);
}

#coop-wp-root .coop-btn-call:hover {
    box-shadow: 0 10px 32px rgba(0, 200, 83, 0.55);
}

#coop-wp-root .coop-btn-messenger:hover {
    box-shadow: 0 10px 32px rgba(0, 132, 255, 0.55);
}

@media (max-width: 480px) {
    #coop-wp-root .coop-btn {
        padding: 13px 24px;
        font-size: 14px;
    }
}

#coop-wp-root .coop-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s ease 0.3s;
}

#coop-wp-root .coop-revealed.coop-privacy {
    opacity: 1;
    transform: translateY(0);
}

/* Revealed states */
#coop-wp-root .coop-revealed {
    opacity: 1 !important;
    transform: translateY(0) scaleX(1) !important;
}

@media (max-width: 600px) {
    #coop-wp-root {
        padding: 80px 20px;
    }

    #coop-wp-root .coop-title {
        font-size: 32px;
    }
}
    
