@font-face {
    font-family: 'HarmonyOS';
    src: url('font/HarmonyOS_Sans_SC/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HarmonyOS';
    src: url('font/HarmonyOS_Sans_SC/HarmonyOS_Sans_SC_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'HarmonyOS';
    src: url('font/HarmonyOS_Sans_SC/HarmonyOS_Sans_SC_Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'HarmonyOS', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 65.104vw;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: transparent;
    /* background: rgba(255, 255, 255, 0.95); */
    /* backdrop-filter: blur(10px); */
    padding: 0.781vw 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625vw;
}

.logo-icon {
    height: 5vw;
    width: 26.875vw;
}

.nav {
    display: flex;
    gap: 4.583vw;
}

.nav-link {
    text-decoration: none;
    color: #683B33;
    font-size: 1.042vw;
    font-weight: 100;
    padding: 0.417vw 0;
    border-bottom: 0.208vw solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: #D3610B;
}

/* Hero Section */
.hero {
    background: url('./img/hero_bg.webp') no-repeat center;
    background-size: cover;
    width: auto;
    height: 55.625vw;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 4.167vw;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.167vw;
    font-weight: bold;
    color: #683B33;
    margin-bottom: 1.042vw;
    letter-spacing: 2.5vw;
}

.hero-subtitle {
    font-size: 1.667vw;
    color: #683B33;
    font-weight: 100;
    margin-bottom: 2.083vw;
    letter-spacing: 1.25vw;
}

.cta-button {
    width: 17.969vw;
    height: 4.01vw;
    background: linear-gradient(to right, #DF672A, #EAB414);
    color: white;
    border: none;
    padding: 0.833vw 1.667vw;
    border-radius: 2.344vw;
    font-size: 1.667vw;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 4.167vw;
    box-shadow: 0 0.208vw 0.781vw rgba(255, 107, 53, 0.3);
    letter-spacing: 0.052vw;
}

.cta-button:hover {
    transform: translateY(-0.104vw);
    box-shadow: 0 0.417vw 1.302vw rgba(255, 107, 53, 0.4);
}

/* Feature Cards */
.features {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.75vw;
    flex-wrap: wrap;
    margin-top: 3.125vw;
    padding-top: 1.042vw;
}

.feature-card {
    border-radius: 2.083vw;
    padding: 0;
    text-align: left;
    width: 19.271vw;
    height: 9.415vw;
    box-shadow: 0 0.313vw 1.25vw rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    overflow: visible;
    position: relative;
    margin-top: 1.042vw;
    DISPLAY: flex;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-0.521vw);
    box-shadow: 0 1.302vw 2.604vw rgba(0, 0, 0, 0.25);
}

.feature-efficient {
    background: linear-gradient(to bottom, #FFCDA1 0%, #B38755 100%);
}

.feature-efficient .feature-badge {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F9DBC1 100%);
}

.feature-allinone {
    background: linear-gradient(to bottom, #FFE7C7 0%, #FB9D37 100%);
}

.feature-allinone .feature-badge {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFDCB6 100%);
}

.feature-specialized {
    background: linear-gradient(to bottom, #FFC5C0 0%, #E94F3B 100%);
}

.feature-specialized .feature-badge {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFBBBB 100%);
}

.feature-badge {
    width: 10.885vw;
    height: 5.625vw;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.25vw;
    padding: 0 0 0 1.667vw;
    position: absolute;
    top: -25%;
    left: 0%;
    box-shadow: 0 0.156vw 0.521vw rgba(0, 0, 0, 0.12);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-label {
    display: block;
    font-size: 1.875vw;
    font-weight: bold;
    color: #683B33;
    margin-bottom: 0.104vw;
    line-height: 1;
}

.feature-subtitle {
    font-size: 1.042vw;
    margin-top: 0.25vw;
    color: #B9847B;
    font-weight: 100;
    letter-spacing: 0.052vw;
}

.feature-text {
    position: relative;
    top: 1.042vw;
    left: 1.042vw;
    right: 1.042vw;
    font-size: 1.667vw;
    color: #fff;
    font-weight: 500;
}

.plus {
    font-size: 3.333vw;
    color: #683B33;
    bottom: -1vw;
    position: relative;
}

/* About Section */
.about {
    padding: 2.604vw 0 6.771vw 0;
    background: #FFFFFF;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.083vw;
    color: #683B33;
    margin-bottom: 0.781vw;
    font-weight: bold;
    letter-spacing: 0.583vw;
}

.section-subtitle {
    text-align: center;
    font-size: 1.042vw;
    color: #777777;
    letter-spacing: 0.156vw;
    margin-bottom: 4.167vw;
    text-transform: uppercase;
    letter-spacing: 0.415vw;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23.438vw, 1fr));
    gap: 2.083vw;
    margin-top: 2.604vw;
}

.about-card {
    background: linear-gradient(to bottom, #FFF4E8 0%, #FFEACA 100%);
    border-radius: 0.781vw;
    padding: 2.083vw 1.563vw;
    text-align: center;
    box-shadow: 0 0.208vw 1.042vw rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-card:hover {
    transform: translateY(-0.260vw);
    box-shadow: 0 0.781vw 2.083vw rgba(0, 0, 0, 0.15);
}

.about-card h3 {
    font-size: 1.25vw;
    color: #683B33;
    margin-bottom: 1.302vw;
    font-weight: bold;
}

.about-card p {
    color: #777777;
    line-height: 1.8;
    font-size: 1.042vw;
}

.about-logo {
    position: absolute;
    top: 7.5vw;
    right: -15vw;
    transform: translate(-50%, -50%);
    width: 35.729vw;
    height: 35.729vw;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

/* Products Section */
.container-product {
    padding: 0 3.49vw 0 3.177vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products {
    height: 34.792vw;
    padding: 5.208vw 0;
    background: url('./img/service_bg.webp') no-repeat center;
    background-size: cover;
    color: white;
    position: relative;
}

.products .container {
    position: relative;
    z-index: 2;
}

.products-title {
    text-align: center;
    font-size: 2.083vw;
    margin-bottom: 2.5vw;
    font-weight: bold;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 7.187vw;
    margin-bottom: 2.396vw;
    border-bottom: 0.104vw solid rgba(255, 255, 255, 0.4);
    width: 54.427vw;
}

.category {
    font-size: 1.042vw;
    opacity: 0.9;
    padding: 0.521vw 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.category:hover,
.category.active {
    opacity: 1;
}

.category.active::after {
    content: '';
    position: absolute;
    bottom: 0.025vw;
    left: 0;
    width: 5.313vw;
    height: 0.313vw;
    background: #fff;
    transition: width 0.3s ease;
}

.category:hover::after,
.category.active::after {
    width: 100%;
}

.product-content-wrapper {
    width: 100%;
    min-height: 20.833vw;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19.792vw, 1fr));
    gap: 1.372vw;
    grid-auto-flow: column;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: grid;
    opacity: 1;
}

.single-item-layout {
    justify-content: center;
    grid-template-columns: 1fr;
}

.single-item {
    width: 54.427vw;
    margin: 0 auto;
}

.product-card {
    width: 30.196vw;
    height: 14.896vw;
    border-radius: 1.042vw;
    padding: 1.563vw;
    display: flex;
    align-items: center;
    gap: 1.042vw;
    transition: all 0.3s ease;
}

#tab1 .product-card:nth-child(1) {
    background: url('./img/service-item_bg1.webp') no-repeat center;
    background-size: cover;
}

#tab1 .product-card:nth-child(2) {
    background: url('./img/service-item_bg2.webp') no-repeat center;
    background-size: cover;
}

#tab1 .product-card:nth-child(3) {
    background: url('./img/service-item_bg3.webp') no-repeat center;
    background-size: cover;
}

#tab2 .product-card {
    width: 54.427vw;
    background: url('./img/tech-item1.webp') no-repeat center;
    background-size: cover;
}

#tab3 .product-card:nth-child(1) {
    background: url('./img/scnario-item1.webp') no-repeat center;
    background-size: cover;
}

#tab3 .product-card:nth-child(2) {
    background: url('./img/scnario-item2.webp') no-repeat center;
    background-size: cover;
}

#tab3 .product-card:nth-child(3) {
    background: url('./img/service-item_bg3.webp') no-repeat center;
    background-size: cover;
}

#tab4 .product-card {
    width: 54.427vw;
    background: url('./img/brand-item1.webp') no-repeat center;
    background-size: cover;
}

.product-card:hover {
    transform: translateY(-0.417vw);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0.781vw 2.083vw rgba(0, 0, 0, 0.2);
}

.product-content h3 {
    font-size: 1.875vw;
    color: #683B33;
    margin-bottom: 0.938vw;
    font-weight: bold;
    text-shadow: 0.052vw 0.052vw 0.104vw rgba(0, 0, 0, 0.1);
}

.product-content p {
    font-size: 1.042vw;
    color: #777777;
    line-height: 1.7;
    width: 15.281vw;
}

/* Mobile Features Section */
.mobile-features {
    padding: 5.208vw 0;
    background: url('./img/app_bg.webp') no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 56.927vw;
}

.mobile-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 183, 77, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.mobile-features .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.208vw;
    align-items: center;
    position: relative;
    z-index: 2;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 4.167vw;
}

.feature-item {
    height: 11.042vw;
    width: 36.094vw;
    background: rgba(252, 240, 233, 0.77);
    backdrop-filter: blur(0.781vw);
    border-radius: 1.042vw;
    padding: 2.083vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.417vw 1.302vw rgba(0, 0, 0, 0.1);
    border: 0.052vw solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.feature-item:hover,
.feature-item.active {
    transform: translateX(0.781vw);
    box-shadow: 0 0.781vw 2.083vw rgba(0, 0, 0, 0.15);
    background: url('./img/app-item_bg2.webp?v=20250821') no-repeat center;
    /*background-size: cover;*/
    height: 11.042vw;
    width: 36.094vw;
    border: none;
    border-radius: 1.302vw;
}

.feature-item h3 {
    font-size: 1.875vw;
    color: #683B33;
    margin-bottom: 0.625vw;
    font-weight: bold;
}

.feature-item p {
    color: #777777;
    font-size: 1.042vw;
    line-height: 1.7;
    max-width: 21vw;
}

.arrow-btn {
    border: none;
    width: 3.958vw;
    height: 3.958vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.arrow-btn:hover {
    background: #FF5722;
    transform: scale(1.15);
    box-shadow: 0 0.313vw 1.042vw rgba(255, 107, 53, 0.4);
}

.arrow-btn img {
    width: 3.958vw;
    height: 3.958vw;
}

.mobile-mockup {
    position: relative;
    text-align: center;
}

.phone-image {
    max-width: 23.251vw;
    height: 44.115vw;
    filter: drop-shadow(0 1.042vw 2.083vw rgba(0, 0, 0, 0.2));
}

.mobile-features-logo {
    position: absolute;
    top: -7.5vw;
    right: -12.5vw;
    width: 35.729vw;
    height: 35.729vw;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

/* Footer */
.footer {
    background: #F7D3B2;
    padding: 3.125vw 0 1.563vw;
    color: #333;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.604vw;
}

.footer-left {
    max-width: 21.823vw;
}

.footer-logo {
    margin-bottom: 1.302vw;
    display: flex;
    align-items: center;
    gap: 0.521vw;
}

.footer-logo .logo-icon {
    height: 5vw;
    width: 26.875vw;
}

.footer-description {
    font-size: .7292vw;
    line-height: 1.8;
    color: #62352D;
}

.footer-right {
    display: flex;
    gap: 4.167vw;
}

.footer-section h4 {
    font-size: .7292vw;
    font-weight: bold;
    margin-bottom: 1.302vw;
    color: #62352D;
}

.footer-section a {
    display: block;
    color: #62352D;
    text-decoration: none;
    margin-bottom: 0.625vw;
    font-size: 0.911vw;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF6B35;
}

.footer-section p {
    font-size: .7292vw;
    color: #62352D;
    margin-bottom: 0.521vw;
}

.footer-bottom {
    border-top: 0.104vw solid rgba(0, 0, 0, 0.1);
    padding-top: 2.083vw;
    text-align: center;
    font-size: .8333vw;
    color: #62352D;
}

.footer-bottom p {
    margin-bottom: 0.625vw;
}

.footer-links {
    margin-top: 1.042vw;
}

.footer-links a {
    color: #62352D;
    text-decoration: none;
    margin: 0 0.781vw;
    transition: color 0.3s ease;
    font-size: .8333vw;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-links span {
    color: #62352D;
}