/* =============================================
   Asana 落地页样式
   全局约定：只使用 px 单位，不使用 rem
   ============================================= */

.asana-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =============================================
   Hero Section（居中标题 + 全幅产品图）
   ============================================= */
.asana-hero {
    background: linear-gradient(180deg, #FAF9F7 0%, #F1ECF9 100%);
    padding: 72px 0 60px;
    overflow: hidden;
}

.asana-hero .asana-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.asana-hero-text {
    max-width: 760px;
}

.asana-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #1E0A3C;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.asana-hero-desc {
    font-size: 19px;
    color: #4B4B4B;
    line-height: 1.7;
    margin-bottom: 32px;
}

.asana-hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.asana-hero-product {
    width: 100%;
    max-width: 980px;
    margin-top: 48px;
}

.asana-hero-product img {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(30, 10, 60, 0.22);
}

/* =============================================
   通用按钮
   ============================================= */
.asana-btn-coral {
    display: inline-block;
    background: #F06A6A;
    color: #FFFFFF !important;
    padding: 15px 38px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(240, 106, 106, 0.3);
}

.asana-btn-coral:hover {
    background: #E25656;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.asana-btn-outline {
    display: inline-block;
    border: 2px solid #1E0A3C;
    color: #1E0A3C !important;
    padding: 13px 34px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
    cursor: pointer;
    background: transparent;
}

.asana-btn-outline:hover {
    background: #1E0A3C;
    color: #FFFFFF !important;
}

/* =============================================
   Fortune 100
   ============================================= */
.asana-fortune {
    padding: 48px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
}

.asana-fortune-headline {
    text-align: center;
    font-size: 14px;
    color: #6D6D6D;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.asana-fortune-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.asana-fortune-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.asana-fortune-logo img {
    max-height: 56px;
    max-width: 200px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: opacity 0.25s, filter 0.25s;
}

.asana-fortune-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =============================================
   通用 Section Title
   ============================================= */
.asana-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #1E0A3C;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.asana-section-desc {
    font-size: 17px;
    color: #4B4B4B;
    text-align: center;
    margin-top: -32px;
    margin-bottom: 48px;
    line-height: 1.6;
}

/* =============================================
   Platform Section
   ============================================= */
.asana-platform {
    padding: 88px 0;
    background: #FFFFFF;
}

.asana-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0 0 44px;
    padding: 0;
    flex-wrap: wrap;
}

.asana-tab-item {
    padding: 11px 30px;
    border-radius: 26px;
    font-size: 15px;
    font-weight: 600;
    color: #4B4B4B;
    cursor: pointer;
    border: 1.5px solid #E0E0E0;
    transition: all 0.2s;
    list-style: none;
}

.asana-tab-item:hover {
    border-color: #1E0A3C;
    color: #1E0A3C;
}

.asana-tab-item.active {
    background: #1E0A3C;
    color: #FFFFFF;
    border-color: #1E0A3C;
}

.asana-tab-pane {
    display: none;
}

.asana-tab-pane.active {
    display: block;
    animation: asanaFade 0.4s ease;
}

@keyframes asanaFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.asana-pane-wrap {
    display: flex;
    align-items: center;
    gap: 56px;
    background: linear-gradient(135deg, #F6F4EF 0%, #EFEAF7 100%);
    border-radius: 24px;
    padding: 48px 56px;
}

.asana-pane-visual {
    flex: 1;
    min-width: 0;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 36px rgba(30, 10, 60, 0.12);
    padding: 16px;
}

.asana-pane-visual img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.asana-pane-info {
    flex: 1;
}

.asana-pane-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1E0A3C;
    margin-bottom: 24px;
    line-height: 1.3;
}

.asana-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.asana-check-list li {
    font-size: 16px;
    color: #4B4B4B;
    padding: 11px 0 11px 32px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid #E5E0EC;
}

.asana-check-list li:last-child {
    border-bottom: none;
}

.asana-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 11px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 11px;
    background: #F06A6A;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asana-text-btn {
    display: inline-block;
    background: #F06A6A;
    color: #FFFFFF !important;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(240, 106, 106, 0.28);
}

.asana-text-btn:hover {
    background: #E25656;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* =============================================
   Use Cases
   ============================================= */
.asana-usecases {
    padding: 88px 0;
    background: #F6F4EF;
}

.asana-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.asana-case-card {
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.asana-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30, 10, 60, 0.14);
}

.asana-case-preview {
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, #FCEEF0 0%, #F6E4F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}

.asana-case-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.asana-case-body {
    padding: 26px 24px 28px;
}

.asana-case-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1E0A3C;
    margin-bottom: 12px;
    line-height: 1.3;
}

.asana-case-body p {
    font-size: 14px;
    color: #6D6D6D;
    line-height: 1.65;
    margin: 0;
}

/* =============================================
   What Sets Asana Apart
   ============================================= */
.asana-apart {
    padding: 88px 0;
    background: #D4EAF7;
}

.asana-apart-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.asana-apart-card {
    background: #0D2137;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    overflow: hidden;
}

.asana-apart-card-content h3 {
    font-size: 27px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.3;
}

.asana-apart-card-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.asana-apart-card-img {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.asana-apart-card-img img {
    max-width: 240px;
    max-height: 180px;
    width: auto;
    height: auto;
    display: block;
}

/* =============================================
   Asana Gov
   ============================================= */
.asana-gov {
    padding: 64px 0;
    background: #FFFFFF;
}

.asana-gov-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    background: linear-gradient(135deg, #F0EBF8 0%, #E6EEFB 100%);
    border-radius: 24px;
    padding: 48px 56px;
}

.asana-gov-logo-wrap {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asana-gov-logo-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
}

.asana-gov-info {
    flex: 1;
}

.asana-gov-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1E0A3C;
    margin-bottom: 12px;
    line-height: 1.3;
}

.asana-gov-info p {
    font-size: 15px;
    color: #4B4B4B;
    line-height: 1.7;
    margin: 0;
}

.asana-gov-cta {
    flex-shrink: 0;
}

.asana-btn-outline-dark {
    display: inline-block;
    border: 2px solid #1E0A3C;
    color: #1E0A3C !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.asana-btn-outline-dark:hover {
    background: #1E0A3C;
    color: #FFFFFF !important;
}

/* =============================================
   Integrations
   ============================================= */
.asana-integrations {
    padding: 88px 0;
    background: #FFFFFF;
    border-top: 1px solid #EEEEEE;
}

.asana-integ-header {
    text-align: center;
    margin-bottom: 44px;
}

.asana-integ-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.asana-integ-logo {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ECECEC;
    border-radius: 18px;
    padding: 18px;
    transition: box-shadow 0.25s, transform 0.25s;
    background: #FFFFFF;
}

.asana-integ-logo:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.asana-integ-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.asana-integ-cta {
    text-align: center;
}

/* =============================================
   Testimonials
   ============================================= */
.asana-testimonials {
    padding: 88px 0;
    background: #F6F4EF;
}

.asana-testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.asana-quote {
    font-size: 23px;
    color: #1E0A3C;
    line-height: 1.65;
    font-weight: 500;
    margin: 0 0 32px;
    padding-left: 26px;
    border-left: 4px solid #F06A6A;
}

.asana-testimonial-author {
    padding-left: 26px;
}

.asana-author-name {
    font-size: 16px;
    font-weight: 700;
    color: #1E0A3C;
    margin-bottom: 4px;
}

.asana-author-title {
    font-size: 14px;
    color: #6D6D6D;
}

/* =============================================
   Get Started
   ============================================= */
.asana-getstarted {
    padding: 88px 0;
    background: #FFFFFF;
}

.asana-getstarted-wrap {
    display: flex;
    gap: 72px;
    align-items: center;
}

.asana-getstarted-left {
    flex: 1;
}

.asana-getstarted-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1E0A3C;
    margin-bottom: 16px;
    line-height: 1.3;
}

.asana-getstarted-left > p {
    font-size: 16px;
    color: #4B4B4B;
    line-height: 1.7;
    margin-bottom: 24px;
}

.asana-start-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.asana-start-list li {
    font-size: 16px;
    color: #1E0A3C;
    font-weight: 500;
    padding: 10px 0 10px 34px;
    position: relative;
}

.asana-start-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 9px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 12px;
    background: #F06A6A;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asana-getstarted-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.asana-getstarted-right img {
    max-width: 360px;
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   Awards
   ============================================= */
.asana-awards {
    padding: 72px 0;
    background: #FBFAF8;
    border-top: 1px solid #EEEEEE;
}

.asana-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.asana-award-item {
    text-align: center;
    padding: 36px 28px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 18px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.asana-award-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.asana-award-badge {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.asana-award-badge img {
    max-height: 150px;
    max-width: 100%;
    width: auto;
    border-radius: 8px;
}

.asana-award-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E0A3C;
    line-height: 1.4;
    margin-bottom: 8px;
}

.asana-award-source {
    font-size: 13px;
    color: #6D6D6D;
}

/* =============================================
   FAQ
   ============================================= */
.asana-faq {
    padding: 88px 0;
    background: #FFFFFF;
}

.asana-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.asana-faq-item {
    border: 1px solid #E8E4F0;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.asana-faq-item.active {
    border-color: #C9B8E8;
    box-shadow: 0 8px 26px rgba(30, 10, 60, 0.08);
}

.asana-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1E0A3C;
    user-select: none;
    transition: color 0.2s;
}

.asana-faq-q:hover {
    color: #F06A6A;
}

.asana-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: 20px;
}

.asana-faq-icon::before,
.asana-faq-icon::after {
    content: '';
    position: absolute;
    background: #F06A6A;
    border-radius: 2px;
    transition: transform 0.25s;
}

.asana-faq-icon::before {
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
}

.asana-faq-icon::after {
    top: 0;
    left: 8px;
    width: 2px;
    height: 18px;
}

.asana-faq-item.active .asana-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.asana-faq-a {
    display: none;
    padding: 0 28px 24px;
}

.asana-faq-item.active .asana-faq-a {
    display: block;
}

.asana-faq-a p {
    font-size: 15px;
    color: #4B4B4B;
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   Final CTA
   ============================================= */
.asana-final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1E0A3C 0%, #4A2189 100%);
    text-align: center;
}

.asana-final-title {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.35;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

/* =============================================
   响应式
   ============================================= */
@media (max-width: 1024px) {
    .asana-hero-title {
        font-size: 40px;
    }
    .asana-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .asana-apart-cards {
        grid-template-columns: 1fr;
    }
    .asana-awards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .asana-getstarted-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .asana-gov-wrap {
        flex-direction: column;
        text-align: center;
    }
    .asana-pane-wrap {
        flex-direction: column;
        padding: 36px;
    }
    .asana-pane-visual {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .asana-container {
        padding: 0 20px;
    }
    .asana-hero-title {
        font-size: 32px;
    }
    .asana-hero-desc {
        font-size: 16px;
    }
    .asana-section-title {
        font-size: 28px;
    }
    .asana-cases-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .asana-fortune-logos {
        gap: 28px;
    }
    .asana-integ-logos {
        gap: 14px;
    }
    .asana-integ-logo {
        width: 72px;
        height: 72px;
        padding: 14px;
    }
    .asana-final-title {
        font-size: 28px;
    }
    .asana-quote {
        font-size: 18px;
    }
    .asana-testimonial-card {
        padding: 36px 28px;
    }
}
