/* ===== Application Page Styles ===== */

/* Banner 背景图片（继承 banner-base.css 的 .sci-banner 样式） */
.sci-banner {
    --banner-color: #05080e;
    --banner-bg: url('../img/application/application_banner.jpg');
}

/* ===== Application Section — Apple 风格 ===== */
.app-section {
    padding: 80px 0 100px;
    background: #F5F5F7;
}

/* 车辆类型卡片 */
.app-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.app-vehicle-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.app-vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}
.app-vehicle-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.app-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.app-vehicle-card:hover .app-vehicle-image img {
    transform: scale(1.08);
}
.app-vehicle-content {
    padding: 24px;
}
.app-vehicle-title {
    font-size: 20px;
    font-weight: 700;
    color: #FF7E00;
    margin: 0 0 8px;
    text-align: center;
}
.app-vehicle-subtitle {
    font-size: 12px;
    color: #c2c2c2;
    text-align: center;
    margin: 0 0 12px;
    letter-spacing: 2px;
}
.app-vehicle-desc {
    font-size: 14px;
    color: #86868B;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* 场景标题 */
.app-scenario-header {
    text-align: center;
    margin-bottom: 60px;
}
.app-scenario-title {
    font-size: 42px;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.app-scenario-subtitle {
    font-size: 16px;
    color: #86868B;
    margin: 0;
}

/* 应用场景卡片 - 重新设计 */
.app-scenario-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.app-scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.app-scenario-inner {
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
}
.app-scenario-inner.reverse {
    flex-direction: row-reverse;
}
.app-scenario-image {
    flex: 0 0 45%;
    position: relative;
}
.app-scenario-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 16px;
    background: #F5F5F7;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.app-scenario-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255, 126, 0, 0.15);
    border-radius: 20px;
    pointer-events: none;
}
.app-scenario-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.app-scenario-card:hover .app-scenario-image img {
    transform: scale(1.05);
}
.app-scenario-content {
    flex: 1;
}
.app-scenario-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(255,126,0,0.1), rgba(255,149,0,0.1));
    border-radius: 980px;
    font-size: 12px;
    color: #FF7E00;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.app-scenario-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF7E00;
}
.app-scenario-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #FF7E00;
    margin: 0 0 12px;
    line-height: 1.3;
}
.app-scenario-content-subtitle {
    font-size: 12px;
    color: #c2c2c2;
    letter-spacing: 2px;
    margin: 0 0 20px;
}
.app-scenario-content-desc {
    font-size: 15px;
    color: #515154;
    line-height: 1.8;
    margin: 0 0 24px;
}
.app-scenario-features {
    list-style: none;
    padding: 24px;
    margin: 0;
    background: #FAFAFA;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}
.app-scenario-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #1D1D1F;
    line-height: 1.6;
    padding: 8px 0;
}
.app-scenario-features li strong {
    font-weight: 700;
    color: #FF7E00;
    display: inline;
    white-space: nowrap;
}

/* ── Application Responsive ── */
@media (max-width: 991px) {
    .app-vehicles-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .app-scenario-inner,
    .app-scenario-inner.reverse { flex-direction: column; gap: 30px; }
    .app-scenario-image { flex: none; width: 100%; }
    .app-scenario-content { flex: none; width: 100%; }
}
@media (max-width: 767px) {
    .app-section { padding: 50px 0 70px; }
    .app-vehicles-grid { grid-template-columns: 1fr; gap: 16px; }
    .app-scenario-title { font-size: 32px; }
    .app-scenario-inner { padding: 30px; }
    .app-scenario-content-title { font-size: 22px; }
    .app-scenario-features { grid-template-columns: 1fr; padding: 20px; gap: 12px 16px; }
}

