/* ============================================================
   Life at JOYIN Template — Complete Stylesheet
   设计规范：品牌色 #F37022 / #FFFFFF / #333333
   响应式断点：mobile<768px / tablet 768-1024px / desktop>1024px
   布局原则：max-w-7xl 居中，安全边距，section间距 py-16~py-24
   ============================================================ */

/* ─── 字体加载 ─────────────────────────────────────────── */
@font-face {
    font-family: 'Fira Sans';
    src: url('../fonts/Fira sans/FiraSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Fira Sans';
    src: url('../fonts/Fira sans/FiraSans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/be_vietnam_pro/ttf/BeVietnamPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/be_vietnam_pro/ttf/BeVietnamPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Dozed';
    src: url('../fonts/dozed/DozedDemoRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* ─── 品牌色变量 ─────────────────────────────────── */
:root {
    --joyin-orange: #F37022;
    --joyin-white: #FFFFFF;
    --joyin-text: #333333;
    --joyin-gray: #555555;
    --joyin-light-gray: #F5F5F5;
    --joyin-dark: #1A1A1A;
}

/* ───────────────────────────────────────────────────────────
   0. 通用基础
   ─────────────────────────────────────────────────────────── */


.life-page-wrapper {
    font-family: 'Inter', 'Roboto', 'Be Vietnam Pro', sans-serif;
    color: var(--joyin-text);
    overflow-x: hidden;
}

.life-section-subtitle {
    display: block;
    font-size: 13px;
    color: #27313C;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.life-section-title {
    text-align: left;
    margin-bottom: 56px;
    font-size: clamp(32px, 3vw, 54px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--joyin-text);
}

/* ───────────────────────────────────────────────────────────
   1. HERO SECTION
   全屏深色背景图 + 白色大标题居中
   布局：Flexbox垂直水平居中，100vh最小高度
   ─────────────────────────────────────────────────────────── */
.life-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;    
    overflow: hidden;
}

.life-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.life-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1100px;
}

.life-hero-title {
    font-family: 'Fira Sans';
    font-size: clamp(45px, 7vw, 100px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--joyin-white);
    margin: 0 0 24px 0;
}

.life-hero-subtitle {
    font-size: clamp(10px, 2vw, 14px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0 0 40px 0;
        max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.life-hero-cta {
    margin-top: 32px;
}

.life-cta-link {
    display: inline-block;
    font-size: 18px;
    color: var(--joyin-orange);
    text-decoration: none;
    border: 1px solid var(--joyin-orange);
    border-radius: 20px;
    padding: 6px 20px;
    transition: all 0.3s ease;
}

.life-cta-link:hover {
    color: var(--joyin-white);
     background: var(--joyin-orange);
}

/* ───────────────────────────────────────────────────────────
   2. WHAT WILL YOU EXPERIENCE HERE
   橙色顶部过渡带 + 3×2网格卡片
   布局：Grid 3列，响应式 1列(mobile) / 2列(tablet) / 3列(desktop)
   ─────────────────────────────────────────────────────────── */


/* 顶部过渡带 - 背景图覆盖（不再固定橙色） */
.life-exp-transition {
    padding: 12% 24px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.life-exp-transition::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    outline: none !important;
    border: none !important;
}

.life-exp-transition-inner {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    outline: none !important;
}

.life-exp-transition-text {
    font-size: clamp(16px, 3vw, 24px);
    color: var(--joyin-white);
    max-width: 600px;
    line-height: 1.4;
    outline: none !important;
}

/* 3D充气几何图形已移除（改用背景图），保留结构以防后续扩展 */
.life-exp-bubbles {
    display: none;
}

/* 主体容器 */
.life-exp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px  24px;
}

.life-exp-title {
    text-align: left;
    margin-bottom: 56px;
    font-size: clamp(32px, 3vw, 54px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--joyin-text);
}

/* 3×2 网格 */
.life-exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.life-exp-card {
    transition: all 0.3s ease;
    padding: 32px;
    margin-left: -32px;
}

.life-exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: var(--joyin-orange);
}

.life-exp-card-icon {
    margin-bottom: 20px;
    height: 48px;
    display: flex;
    align-items: center;
}

.life-exp-card-icon img {
    height: 100%;
    width: auto;
    max-width: 48px;
    object-fit: contain;
}

.life-exp-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--joyin-text);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.life-exp-card-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--joyin-gray);
    line-height: 1.6;
    margin: 0;
}

/* ───────────────────────────────────────────────────────────
   3. TESTIMONIAL QUOTE
   布局：背景图（div background-image）+ 右侧悬浮白色卡片
   ─────────────────────────────────────────────────────────── */
.life-testimonial-section {
    padding: 0 0 40px 0;
}

.life-testimonial-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
}

/* 背景图叠加暗色遮罩，保证白色卡片可读 */
.life-testimonial-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.21);
    pointer-events: none;
}

.life-testimonial-card {
    background: var(--joyin-white);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
    padding: 40px;
    margin: 40px;
    max-width: 480px;
}

.life-testimonial-quote {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.6;
    color: var(--joyin-text);
    margin: 0 0 24px 0;
    font-style: normal;
}


.life-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.life-testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--joyin-text);
}

.life-testimonial-role {
    font-size: 14px;
    font-weight: 400;
    color: var(--joyin-gray);
}

/* ───────────────────────────────────────────────────────────
   4. BENEFITS & PERKS + JOY IN ACTION
   布局：福利5列横排 + 活动3列图片网格
   ─────────────────────────────────────────────────────────── */
.life-benefits-section {
    padding: 80px 24px;
}

.life-benefits-container {
    max-width: 1280px;
    margin: 0 auto;
}

.life-benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.life-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 150px;
    gap: 12px;
}

.life-benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.life-benefit-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.life-benefit-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--joyin-text);
}

.life-benefit-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    padding-bottom: 10%;
}

.life-benefits-btn {
    display: inline-block;
    font-size: 18px;
    color: var(--joyin-orange);
    text-decoration: none;
    border: 1px solid var(--joyin-orange);
    border-radius: 20px;
    padding: 6px 20px;
    transition: all 0.3s ease;
}

.life-benefits-btn:hover {
    color: var(--joyin-white);
    background: var(--joyin-orange);
}

/* Joy In Action */
.life-joy-action-container {
    max-width: 1280px;
    margin: 80px auto 0;
}

.actionSwiper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0;
    transition: opacity 0.4s ease;
}

.actionSwiper .swiper {
    width: 100%;
    height: 500px;
}

.actionSwiper .swiper-slide {
    height: 500px !important;
    overflow: hidden;
    border-radius: 6px;
    transition: all 0.5s ease;
}

.actionSwiper .swiper-slide img {
    width: 100%;
    height: 500px !important;
    object-fit: cover;
}

.actionSwiper .swiper-button-prev,
.actionSwiper .swiper-button-next {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    color: var(--joyin-orange);
}

.actionSwiper:hover .swiper-button-prev,
.actionSwiper:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
}

/* 覆盖 Swiper 默认 SVG 图标，统一用 ::after 显示箭头 */
.actionSwiper .swiper-button-prev:after,
.actionSwiper .swiper-button-next:after {
    all: unset;
    font-size: 40px;
    font-weight: 100;
    line-height: 1;
}



@media (max-width: 767px) {
    .actionSwiper .swiper-button-prev,
    .actionSwiper .swiper-button-next {
        display: none;
    }
}

/* ── slide media ─────────────────────────────── */
.slide-media-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.4s ease;
}



.slide-bottom-text {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.02em;
    transition: opacity 0.4s ease;
}

.slide-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s ease;
}

/* 浮动信息框（右上角，毛玻璃效果） */
.slide-info-box {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 280px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85) translateX(12px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (min-width: 768px) and (hover: hover) {
    .actionSwiper .swiper-wrapper:hover .swiper-slide:hover {
        width: 50% !important;
    }

    .actionSwiper .swiper-wrapper:hover .swiper-slide:not(:hover) {
        width: 25% !important;
    }

    .actionSwiper .swiper-slide:hover .slide-info-box {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateX(0);
    }
}

.slide-info-location {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 8px;
}

.slide-info-desc {
    font-size: 12px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}



/* ───────────────────────────────────────────────────────────
   5. EXPLORE CAREERS
   布局：两列大图并排
   响应式：1列(mobile) / 2列(desktop)
   ─────────────────────────────────────────────────────────── */
.life-explore-section {
    padding: 80px 24px;
    background: var(--joyin-white);
}

.life-explore-container {
    max-width: 1280px;
    margin: 0 auto;
}

.life-explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.life-explore-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.life-explore-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.life-explore-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.life-explore-card:hover .life-explore-img-wrap img {
    transform: scale(1.05);
}

.life-explore-btn {
    position: absolute;
    bottom: 32px;
    color: var(--joyin-white);
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.02em;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 2;
}

/* ───────────────────────────────────────────────────────────
   6. FOOTER SLOGAN BANNER
   橙色背景 + 白色艺术字体 + 员工面部剪影背景
   ─────────────────────────────────────────────────────────── */
.life-slogan-banner {
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 35%;
    margin-top: 5%;
    position: relative;
    overflow: hidden;
}

/* 员工面部剪影矩阵背景（抽象化处理） */
.life-slogan-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 40px,
        transparent 40px,
        transparent 80px
    ),
    repeating-linear-gradient(
        0deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 60px,
        transparent 60px,
        transparent 120px
    );
    pointer-events: none;
}

.life-slogan-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.life-slogan-text {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 800;
    color: var(--joyin-white);
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ───────────────────────────────────────────────────────────
   响应式断点设计
   Mobile < 768px | Tablet 768-1024px | Desktop > 1024px
   ─────────────────────────────────────────────────────────── */

/* Mobile: 单列布局 */
@media (max-width: 767px) {
    .life-page-wrapper {
        --life-mobile-base: 442;
    }

    .life-hero {
        box-sizing: border-box;
        height: 76.4045vw;
        min-height: 76.4045vw;
        max-height: 76.4045vw;
        align-items: center;
        padding: 40px 12px;
        background-position: center;
    }

    .life-hero-overlay {
        background: rgba(0, 0, 0, 0.58);
    }

    .life-hero-content {
        max-width: 360px;
        padding: 0 14px;
    }

    .life-hero-title {
        font-size: clamp(28px, 7.64vw, 40px);
        line-height: 0.98;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
    }

    .life-hero-subtitle {
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.35;
        margin: 10% 0;
    }

    .life-hero-cta {
        margin-top: 16px;
    }

    .life-cta-link {
        font-size: clamp(12px, 3.17vw, 16px);
        color: #fff;
        background: var(--joyin-orange);
        padding: 8px 18px;
        border-radius: 999px;
    }

    .life-exp-transition {
        min-height: clamp(160px, 40vw, 200px);
        padding: 24px 12px;
        background-position: left center !important;
        justify-content: flex-end;
    }

    .life-exp-transition::after {
        background: linear-gradient(90deg, rgba(243, 112, 34, 0.08) 0%, rgba(243, 112, 34, 0.18) 100%);
    }

    .life-exp-transition-inner {
        width: 100%;
        max-width: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0;
        text-align: left;
    }

    .life-exp-transition-text {
        width: 45%;
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.35;
    }

    .life-exp-container,
    .life-benefits-container,
    .life-joy-action-container,
    .life-explore-container {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    .life-exp-container {
        padding: 18px 0 24px;
    }

    .life-benefits-section,
    .life-explore-section {
        padding: 18px 0 24px;
    }

    .life-exp-title,
    .life-section-title {
        font-size: clamp(24px, 5.43vw, 32px);
        line-height: 1.15;
        margin-bottom: 22px;
    }

    .life-exp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 20px;
    }

    .life-exp-bubbles {
        display: none;
    }

    .life-exp-card {
        margin-left: 0;
        padding: 0;
        box-shadow: none;
        border: 0;
    }

    .life-exp-card:hover {
        transform: none;
        box-shadow: none;
    }

    .life-exp-card-icon {
        height: 28px;
        margin-bottom: 8px;
    }

    .life-exp-card-icon img {
        max-width: 28px;
    }

    .life-exp-card-title {
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .life-exp-card-desc {
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.35;
    }

    .life-testimonial-section {
        padding: 4px 0 22px;
    }

    .life-testimonial-container {
        width: calc(100% - 40px);
        flex-direction: row;
        background-size: cover;
        background-position: center;
        justify-content: flex-end;
        align-items: center;
        min-height: clamp(160px, 39vw, 200px);
        border-radius: 6px;
    }

    .life-testimonial-card {
        width: 48%;
        max-width: none;
        margin: 10px;
        padding: 14px 12px;
        border-radius: 5px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    }

    .life-testimonial-quote {
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.35;
        margin: 0;
    }

    .quote-mark {
        display: none;
    }

    .life-benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 22px;
        margin-bottom: 0;
    }

    .life-benefit-item {
        min-width: 0;
        gap: 6px;
    }

    .life-benefit-icon {
        width: 28px;
        height: 28px;
    }

    .life-benefit-label {
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.25;
    }

    .life-benefit-desc {
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.35;
        padding-bottom: 0;
    }

    .life-benefits-btn {
        align-self: stretch;
        text-align: center;
        margin-top: 6px;
        font-size: clamp(12px, 3.17vw, 16px);
        color: #fff;
        background: var(--joyin-orange);
        padding: 7px 16px;
        border-radius: 999px;
    }

    .life-action-grid {
        padding: 0;
    }

    .life-joy-action-container {
        margin: 28px auto 0;
    }

    .life-section-subtitle {
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.25;
        letter-spacing: 0;
        text-transform: none;
        margin-bottom: 8px;
    }

    .actionSwiper .swiper,
    .actionSwiper .swiper-slide,
    .actionSwiper .swiper-slide img {
        height: clamp(160px, 65vw, 350px) !important;
    }

    .actionSwiper .swiper-wrapper {
        align-items: stretch;
        transition-property: transform !important;
    }

    .actionSwiper .swiper-slide {
        border-radius: 6px;
        transform: none !important;
        transition: none !important;
    }

    .actionSwiper .swiper-button-prev,
    .actionSwiper .swiper-button-next {
        display: flex;
        opacity: 1;
        visibility: visible;
        width: 30px;
        height: 30px;
        top: auto;
        bottom: 12px;
        margin-top: 0;
        border-radius: 999px;
        background: #DBDBDB;
        color: #fff;
    }

    .swiper-navigation-icon{
        height: 70% !important;
    }

    .actionSwiper .swiper-button-prev {
        left: auto;
        right: 52px;
    }

    .actionSwiper .swiper-button-next {
        right: 14px;
    }

    .actionSwiper .swiper-button-prev:after,
    .actionSwiper .swiper-button-next:after {
        font-size: 16px;
        font-weight: 400;
    }

    .slide-bottom-text {
        left: 14px;
        bottom: 16px;
        font-size: clamp(20px, 5.43vw, 28px);
    }

    .slide-info-box {
        display: none;
    }

    .life-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .life-explore-card {
        border-radius: 6px;
        aspect-ratio: 1 / 1;
    }

    .life-explore-btn {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 0;
        white-space: normal;
        font-size: clamp(12px, 3.17vw, 16px);
        line-height: 1.05;
    }

    .life-slogan-text {
        font-size: clamp(64px, 18.1vw, 88px);
    }

    .life-slogan-banner {
        margin-top: 0;
        padding-bottom: 48%;
    }
}

/* Tablet: 2列布局 */
@media (min-width: 768px) and (max-width: 1024px) {
    .life-exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .life-testimonial-card {
        margin-left: -30px;
    }

    .actionSwiper .swiper-slide {
        width: 25% !important;
    }
}

/* Desktop: 3列/完整布局 */
@media (min-width: 1025px) {
    .life-exp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ───────────────────────────────────────────────────────────
   动画效果（由 JS 驱动）
   ─────────────────────────────────────────────────────────── */
.text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;

}

.text-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.text-fade {
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
}

.text-fade.revealed {
    opacity: 1;
}

/* 卡片hover效果 */
.life-exp-card,
.life-action-card,
.life-explore-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 按钮hover效果 */
.life-cta-link,
.life-benefits-btn,
.life-explore-btn {
    transition: all 0.3s ease;
}
