@font-face {
  font-family: "SD Prostreet";
  src: url("/static/fonts/sd_prostreet.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/static/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

main {
    font-family: Inter;
}

/* ===================== Hero Banner Carousel ===================== */
hero-carousel 轮播模块完整样式

/* 全局轮播外层 */
.hero-carousel {
    width: 100%;
    overflow: hidden;
}

.carousel-wrap {
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100vh - var(--header-height, 65px));
}

.carousel-track {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    width: 100%;
    height: 100%;
}

.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 50px 60px;
    height: 100%;
    color: #ffffff;
    box-sizing: border-box;
    z-index: 2;
}

.slide-sub-heading {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.slide-main-title {
    color: #FFF;
    font-size: 86px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.slide-desc {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

.slide-buttons .btn {
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.25s ease;
}

.slide-buttons .btn-primary {
    border-radius: 50px;
    background: #FDBD03;
    color: #000000;
}

.slide-buttons .btn-primary:hover {
    background-color: #ffd633;
}

.slide-buttons .btn-outline {
    background-color: #ffffff;
    color: #000;
    border: 2px solid #fff;
}

.slide-buttons .btn-outline:hover {
    background-color: transparent;
    color: #fff;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 5;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.arrow-prev {
    left: 24px;
}

.arrow-next {
    right: 24px;
}

.carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.dot.active {
    background: #ffffff;
}

/* 移动端响应式适配 */
@media screen and (max-width:768px) {
    .carousel-wrap {
        min-height: 460px;
    }

    .slide-content {
        align-items: center;
        padding: 30px 20px;
    }

    .slide-sub-heading {
        font-size: 16px;
        text-align: center;
        min-height: 22px;
    }

    .slide-main-title {
        font-size: 64px;
        white-space: nowrap;
    }

    .slide-desc {
        font-size: 16px;
        text-align: center;
        line-height: 1.5;
        min-height: 48px;
    }

    .slide-buttons {
        max-width: 260px;
    }

    .slide-buttons .btn {
        text-align: center;
        font-size: 14px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .arrow-prev {
        left: 12px;
    }

    .arrow-next {
        right: 12px;
    }
}

/* ===================== Our Ethos Section ===================== */
.ethos-section {
    padding: 50px 60px;
    background-color: #ffffff;
}

.ethos-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    align-items: start;
}

.ethos-title {
    position: relative;
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}

.title-underline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 12px;
    background-color: #FDBD03;
    border-radius: 20px;
    z-index: 1;
}

.ethos-left-text p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.ethos-right {
    height: 100%;
}

.ethos-desc {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .ethos-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ethos-section {
        padding: 30px 20px;
    }

    .ethos-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .ethos-left-text p {
        font-size: 14px;
    }

    .title-underline {
        width: 160px;
        height: 8px;
    }
}

.banner-cta-section {
    width: 100%;
}

.banner-cta-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 400;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #111;
}

.cta-content {
    position: absolute;
    inset: 0;
    max-width: 100%;
    padding: 0 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    color: #ffffff;
    z-index: 1;
}

.cta-title {
    color: #FFF;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.btn-cta {
    display: inline-block;
    width: fit-content;
    padding: 10px 15px;
    background: #ffffff;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width:768px) {
    .banner-cta-wrap {
        height: clamp(300px, 40vh, 420px);
        aspect-ratio: unset;
    }

    .cta-bg-img {
        object-fit: cover;
    }

    .cta-content {
        align-items: center;
        padding: 0 20px;
        text-align: center;
        gap: 20px;
    }

    .cta-title {
        font-size: 40px;
    }

    .btn-cta {
        font-size: 15px;
    }
}

/* ===================== Category Section 三大车型分类 ===================== */
.category-section {
    padding: 50px 60px;
    background-color: #ffffff;
}

.category-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-category-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: space-between;
}

.card-image img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.card-text {
    padding: 0 10px;
    margin-bottom: 40px;
}

.card-title {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 15px;
    margin-top: 25px;
}

.card-subtitle {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 10px;
}

.card-desc {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.category-btn {
    margin: 0 auto;
    padding: 12px 38px;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.category-btn:hover {
    background-color: #ffd633;
}

/* 平板 & 移动端 */
@media screen and (max-width: 1024px) {
    .category-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .category-section {
        padding: 30px 20px;
    }

    .category-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-subtitle {
        font-size: 16px;
    }

    .card-desc {
        font-size: 12px;
    }

    .category-btn {
        font-size: 16px;
    }
}

.product-carousel-section {
    padding: 50px 60px;
    background-color: #ffffff;
}

.product-carousel-wrap {
    max-width: 100%;
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    background-color: #b3b5b7;
    overflow: hidden;
}

.product-track {
    width: 100%;
    height: 100%;
}

.product-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.product-slide.active {
    opacity: 1;
    visibility: visible;
}

.product-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.product-bg .bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.30);
    z-index: 0;
}

.product-bg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 0;
}

.product-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(82%, 980px);
    color: #FFF;
    font-family: "SD Prostreet", sans-serif;
    font-size: clamp(44px, 5.8vw, 86px);
    font-style: normal;
    font-weight: 700;
    line-height: 0.96;
    text-align: center;
    text-wrap: balance;
    overflow-wrap: anywhere;
    z-index: 1;
}

/* 底部左右分栏容器 */
.product-slide__footer {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 30px 40px;
    box-sizing: border-box;
    /* 不需要额外margin-top，flex自动挤到底 */
}

.product-info {
    color: #ffffff;
}

.product-price {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.product-subtitle {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
}

.product-btn {
    padding: 17px 25px;
    background: #ffffff;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.25s ease;
}

.product-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.product-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .2s;
}

.product-arrow:hover {
    background: #eeeeee;
}

.product-carousel-wrap .product-arrow-prev {
    left: 24px;
}

.product-carousel-wrap .product-arrow-next {
    right: 24px;
}

@media screen and (max-width:768px) {
    .product-carousel-section {
        padding: 30px 20px;
    }

    .product-slide__footer {
        padding: 0 20px 32px;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .product-btn {
        padding: 14px 28px;
    }

    .product-arrow {
        width: 42px;
        height: 42px;
    }

    .product-name {
        width: min(78%, 560px);
        font-size: 25px;
        line-height: 1;
    }

    .product-price {
        font-size: 24px;
    }

    .product-subtitle {
        font-size: 14px;
    }

    .product-btn {
        font-size: 14px;
    }
}

/* ===================== SmartDrive Core Section ===================== */
.smartdrive-section {
    padding: 50px 60px;
    background-color: #ffffff;
}

.smartdrive-container {
    max-width: 100%;
}

.smartdrive-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.logo-tlg {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.logo-tlg img {
    height: 70px;
    width: auto;
}

.header-text p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.smartdrive-diagram {
    width: 100%;
}

.smartdrive-diagram img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.smartdrive-btn {
    width: 500px;
    margin: 30px auto 0;
    padding: 12px 20px;
    background: #BE930B;
    border: 1px solid #BE930B;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.25s ease;
}

.smartdrive-btn a {
    display: block;
}

.smartdrive-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #BE930B;
}


/* 移动端 */
@media screen and (max-width: 768px) {
    .smartdrive-section {
        padding: 30px 20px;
    }

    .smartdrive-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .logo-tlg {
        flex-direction: column;
        align-items: start;
        gap: 12px;
        margin-bottom: 0px;
    }

    .logo-tlg svg:nth-of-type(2) {
        width: 100%;
        height: auto;
    }

    .header-right img {
        height: 60px;
    }

    .smartdrive-btn {
        width: auto;
        max-width: 100%;
        margin: 10px auto 0;
        font-size: 14px;
    }
}

/* Download App Popup */
#downloadPopup {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
}

#downloadPopup.active {
    display: flex;
}

.download-popup-content {
    background-color: #ffffff;
    border-radius: 8px;
    margin: 0 16px;
    padding: 50px 60px;
    position: relative;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.download-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #1C1C1C;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-popup-close:hover {
    color: #BE930B;
}

.download-popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.download-popup-title {
    color: #1C1C1C;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.download-popup-description {
    color: rgba(28, 28, 28, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.download-popup-platforms {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.download-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.download-platform-label {
    color: #1C1C1C;
    font-size: 16px;
    font-weight: 700;
}

.download-qr-code {
    width: 120px;
    height: 120px;
}

.qr-code-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-store-btn {
    display: inline-block;
    text-decoration: none;
}

.download-btn-img {
    display: block;
    width: 140px;
    height: 48px;
    object-fit: contain;
}

.download-popup-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(28, 28, 28, 0.1);
}

.download-popup-footer-text {
    color: #1C1C1C;
    font-size: 16px;
    margin-bottom: 12px;
}

.download-popup-explore-btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #BE930B;
    border-radius: 6px;
    color: #BE930B;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.download-popup-explore-btn:hover {
    background-color: #BE930B;
    color: #ffffff;
}

@media screen and (max-width: 767px) {
    .download-popup-content {
        padding: 30px 20px;
        margin: 0 12px;
    }

    .download-popup-platforms {
        flex-direction: column;
        gap: 30px;
    }

    .download-popup-title {
        font-size: 20px;
    }

    .download-popup-description {
        font-size: 14px;
    }

    .download-btn-img {
        width: 120px;
        height: 40px;
    }
}

/* ===================== Total Shield Section ===================== */
.total-shield-section {
    padding: 50px 60px;
    background-color: #ffffff;
}

.total-shield-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.total-shield-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.total-shield-brand {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 30px;
}

.shield-badge img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.total-shield-text p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn-shield {
    padding: 12px 20px;
    background-color: #FDBD03;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.btn-shield:hover {
    background-color: #ffd633;
}

/* 右侧功能卡片 */
.total-shield-right {
    display: flex;
    justify-content: flex-end;
}

.shield-feature-card {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #000;
}

.shield-feature-card .card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/images/home/torque-sensor.png");
}

.shield-feature-card .card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0) 48%,
            rgba(0, 0, 0) 100%);
}

.shield-feature-card .card-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 13px 40px 15px;
    gap: 40px;
    background-color: #000;
}

.shield-feature-card .card-info h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.shield-feature-card .card-info p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.card-controls {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    padding: 0 40px 20px;
    background-color: #000;
}

.card-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-dot {
    width: 32px;
    height: 4px;
    background-color: #333333;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.progress-dot.active {
    background-color: #FFD633;
}

.card-next-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card-next-btn:hover {
    transform: translateX(4px);
}

/* 移动端 */
@media screen and (max-width: 768px) {
    .total-shield-section {
        padding: 30px 20px;
    }

    .total-shield-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .total-shield-left {
        gap: 10px;
    }

    .total-shield-brand {
        gap: 10px;
    }

    .total-shield-right {
        justify-content: center;
    }

    .shield-feature-card {
        max-width: 100%;
    }
}

.racing-gallery-section {
    padding: 50px 60px;
    background-color: #ffffff;
}

.racing-container {
    max-width: 100%;
}

.racing-main-title {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 34px;
}

.racing-carousel-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.racing-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    transition: transform 0.4s ease-out;
}

.racing-card {
    flex: 0 0 calc(25% - 13px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.card-bg {
    position: relative;
}

.card-bg img {
    width: 100%;
    object-fit: contain;
}

.racing-card-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
}

.racing-card-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.racing-card-text h3 {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}

.racing-card-text p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.racing-arrow-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-top: 25px;
    gap: 40px;
}

.racing-arrow {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color .2s;
}

.racing-arrow:hover {
    color: #000;
}

.racing-carousel-wrap .arrow-prev {
    right: 52px;
}

@media screen and (max-width:1200px) {
    .racing-track {
        gap: 16px;
    }
    .racing-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media screen and (max-width:860px) {
    .racing-track {
        gap: 12px;
    }
    .racing-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media screen and (max-width:560px) {
    .racing-gallery-section {
        padding: 30px 20px;
    }

    .racing-main-title {
        margin-bottom: 20px;
    }

    .racing-card {
        flex: 0 0 100%;
    }

    .card-bg img {
        height: 300px;
    }

    .racing-arrow-wrap {
        margin-top: 10px;
    }
}

/* ===================== TLG Central App Section | Flex Only ===================== */
.tlg-app-section {
    padding: 50px 60px;
    background-color: #ffffff;
}

.tlg-app-container {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.tlg-app-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tlg-app-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.tlg-app-right img {
    max-width: 100%;
    height: auto;
}

/* 顶部小标题 + 黄色下划线 */
.app-sub-heading {
    display: inline-flex;
    flex-direction: column;
    gap: 15px;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.app-sub-heading::before {
    content: "";
    width: 70px;
    height: 10px;
    background-color: #FDBD03;
    border-radius: 20px;
}

.app-title {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.app-desc-short {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.app-download-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-icon-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.app-download-text {
    color: #FDBD03;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.app-text-long p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 48px;
    border-radius: 50px;
    background: #FDBD03;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: background 0.25s ease;
}

.app-btn:hover {
    background-color: #ffd633;
}

@media screen and (max-width: 768px) {
    .tlg-app-section {
        padding: 30px 20px;
    }

    .tlg-app-container {
        flex-direction: column;
        gap: 20px;
    }

    .tlg-app-left {
        width: 100%;
        gap: 10px;
    }

    .app-title {
        font-size: 28px;
    }

    .app-desc-short {
        font-size: 16px;
    }

    .app-text-long p {
        font-size: 14px;
    }

    .app-btn {
        font-size: 16px;
    }
}

.lasting-promise {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 1920 / 670;
    position: relative;
    overflow: hidden;
    padding-inline: 60px;
}

.lasting-promise .scroll-anchor {
    display: inline-block;
}

.lasting-promise .bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lasting-promise .bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: white;
}

.lasting-promise-container {
    position: absolute;
    inset: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 1;
}

.lasting-promise .text-block-top {
    position: absolute;
    top: 40px;
    left: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.lasting-promise .text-block-top h3 {
    color: rgba(244, 244, 244, 0.80);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.lasting-promise .text-block-top p {
    color: #F4F4F4;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: left;
}

.lasting-promise .main-heading-wrap {
    position: relative;
    z-index: 1;
}

.lasting-promise .main-heading-wrap h2 {
    color: #F4F4F4;
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .lasting-promise {
        aspect-ratio: unset;
        padding-inline: 20px;
        min-height: 400px;
    }

    .lasting-promise .bg-wrap img {
        object-fit: cover;
    }

    .lasting-promise .text-block-top {
        left: 0;
        padding: 0px 20px;
        align-items: center;
    }

    .lasting-promise .text-block-top h3 {
        font-size: 24px;
    }

    .lasting-promise .text-block-top p {
        width: 100%;
        font-size: 16px;
    }

    .lasting-promise .main-heading-wrap h2 {
        font-size: 36px;
    }
}

.section-warranty-parts {
    background-color: #FFF;
    padding: 50px 60px;
}

.warranty-container {
    max-width: 100%;
}

.warranty-card-group {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 90px;
}

/* 单个卡片容器 */
.warranty-card {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.warranty-card__image-wrap {
    height: 430px;
    overflow: hidden;
}

.warranty-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warranty-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, black);
    opacity: 0.8;
}

.warranty-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 1;
}

.warranty-card__title {
    color: #F4F4F4;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
}

.warranty-card__desc {
    color: rgba(244, 244, 244, 0.70);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.warranty-card__link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #BE930B;
    margin-top: 12px;
}

.warranty-card__link:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .section-warranty-parts {
        padding: 30px 20px;
    }

    .warranty-card-group {
        margin-bottom: 40px;
    }
}

/* ====================== 三栏特性卡片模块 ====================== */
.parts-feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.parts-feature-card {
    flex: 1;
    min-width: 300px;
}

.parts-feature-card__image {
    width: 100%;
    overflow: hidden;
}

.parts-feature-card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.parts-feature-card__content {
    margin-top: 24px;
}

.parts-feature-card__title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.parts-feature-card__desc {
    color: rgba(0, 0, 0, 0.70);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 767px) {
    .parts-feature-grid {
        gap: 20px;
    }

    .parts-feature-card__content {
        margin-top: 16px;
    }

    .parts-feature-card__title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .parts-feature-card__desc {
        font-size: 16px;
    }
}

.section-freedom-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 830px;
    background-color: #000000;
    overflow: hidden;
}

.freedom-banner__bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.freedom-banner__bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.freedom-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.freedom-banner__subheading {
    font-weight: 600;
    text-transform: uppercase;
    color: #F4F4F4;
    font-size: 18px;
    margin-bottom: 10px;
}

.freedom-banner__heading {
    color: #F4F4F4;
    padding: 0 20px;
    text-align: center;
    font-size: 86px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 767px) {
    .freedom-banner__subheading {
        font-size: 16px;
    }

    .freedom-banner__heading {
        font-size: 30px;
    }
}

.section-our-team {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-our-team__bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-our-team__bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-our-team__bg-mobile {
    display: none;
}

.section-our-team__inner {
    position: relative;
    z-index: 1;
    max-width: 1770px;
    width: 100%;
    height: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: end;
}

.section-our-team__text-block {
    max-width: 600px;
    padding-bottom: 60px;
}

.section-our-team__heading {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}

.section-our-team__desc p {
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.section-our-team__desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .section-our-team {
        flex-direction: column;
        padding: 0 0 30px;
        background-color: #FFF;
    }

    .section-our-team__bg-wrap {
        position: relative;
        display: flex;
    }

    .section-our-team__bg-desktop {
        display: none;
    }

    .section-our-team__bg-mobile {
        display: block;
        height: auto;
    }

    .section-our-team__inner {
        padding: 0 20px;
        justify-content: flex-start;
        height: 100%;
    }

    .section-our-team__heading {
        font-size: 42px;
    }

    .section-our-team__desc p {
        font-size: 16px;
    }

    .section-our-team__text-block {
        padding-bottom: 0px;
    }
}

.section-core-values {
    background-color: #1A1A1A;
    padding: 50px 60px;
    color: #F4F4F4;
}

.section-core-values__inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Mission Vision 顶部双栏 */
.core-values-top-row {
    display: flex;
    gap: 190px;
}

.core-values-mission,
.core-values-vision {
    flex: 1;
}

.core-values-top__label {
    color: #FFF;
    opacity: 0.5;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.core-values-top__text {
    color: rgba(255, 255, 255, 0.70);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* 中间大标题 */
.core-values-main-heading {
    color: #FFF;
    text-align: center;
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

/* 底部三栏图标区域 */
.core-values-items-row {
    display: flex;
    gap: 40px;
    text-align: center;
}

.core-value-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.core-value-item__text {
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 767px) {
    .section-core-values {
        padding: 30px 20px;
    }
    .section-core-values__inner {
        gap: 40px;
    }

    .core-values-top-row {
        flex-direction: column;
        gap: 20px;
    }

    .core-values-top__text {
        font-size: 16px;
    }

    .core-values-main-heading {
        font-size: 42px;
    }

    .core-values-items-row {
        flex-direction: column;
        gap: 48px;
    }

    .core-value-item {
        gap: 10px;
    }

    .core-value-item__text {
        font-size: 22px;
    }
}

.section-gold-slogan {
    background-color: #BE930B;
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.section-gold-slogan__inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 60px;
    text-align: center;
}

.section-gold-slogan__text {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 767px) {
    .section-gold-slogan {
        padding: 30px 0;
    }

    .section-gold-slogan__inner {
        padding: 0 20px;
    }

    .section-gold-slogan__text {
        font-size: 24px;
    }
}

/* Blog Section */
.blog-section {
    background-color: white;
    padding: 30px 20px;
}

.blog-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
}

.blog-view-all {
    padding: 14px 30px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid #BE930B;
    color: #BE930B;
    font-size: 14px;
    font-weight: semibold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-view-all:hover {
    background-color: #BE930B;
    color: white;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-featured-post {
    width: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-featured-image {
    position: absolute;
    inset: 0;
    display: none;
}

.blog-featured-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 74%, rgba(0, 0, 0, 1) 97%);
}

.blog-featured-image-mobile {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

.blog-featured-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-featured-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-featured-date {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
}

.blog-featured-date-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(28, 28, 28, 0.7);
}

.blog-featured-date-text {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
}

.blog-featured-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
    word-break: break-words;
}

.blog-featured-excerpt {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
    word-break: break-words;
}

.blog-featured-read-more {
    font-size: 14px;
    font-weight: semibold;
    text-transform: uppercase;
    color: #1C1C1C;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-featured-read-more:hover {
    color: #BE930B;
}

.blog-side-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-side-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 6px;
}

.blog-side-post-image {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-side-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.blog-side-post-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-side-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
}

.blog-side-post-date-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(28, 28, 28, 0.7);
}

.blog-side-post-date-text {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
}

.blog-side-post-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
    word-break: break-words;
}

.blog-side-post-excerpt {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
    line-height: 1.218;
    max-height: 165px;
    overflow: hidden;
    word-break: break-words;
}

.blog-side-post-read-more {
    font-size: 14px;
    font-weight: semibold;
    text-transform: uppercase;
    color: #1C1C1C;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-side-post-read-more:hover {
    color: #BE930B;
}

.blog-no-posts {
    text-align: center;
    padding: 40px 0;
    color: #666;
}


/* Responsive Design */
@media (min-width: 768px) {
    .blog-section {
        padding: 50px 60px;
    }

    .blog-container {
        gap: 30px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-view-all {
        font-size: 16px;
    }

    .blog-posts {
        flex-direction: row;
    }

    .blog-featured-post {
        flex-direction: column;
        height: 758px;
        justify-content: flex-end;
    }

    .blog-featured-image {
        display: block;
    }

    .blog-featured-image-mobile {
        display: none;
    }

    .blog-featured-content {
        gap: 20px;
        padding: 40px;
        width: 100%;
    }

    .blog-featured-date-icon {
        color: rgba(255, 255, 255, 0.7);
    }

    .blog-featured-date-text {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
    }

    .blog-featured-title {
        font-size: 36px;
        color: white;
    }

    .blog-featured-excerpt {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
    }

    .blog-featured-read-more {
        font-size: 16px;
        color: white;
    }

    .blog-side-post {
        flex-direction: row;
        width: 532px;
    }

    .blog-side-post-image {
        width: 256px;
        height: 364px;
    }

    .blog-side-post-content {
        width: 256px;
        gap: 20px;
    }

    .blog-side-post-date-text {
        font-size: 16px;
    }

    .blog-side-post-title {
        font-size: 24px;
    }

    .blog-side-post-excerpt {
        font-size: 16px;
    }

    .blog-side-post-read-more {
        font-size: 16px;
    }
}