/* 1. 阿里巴巴普惠体 3.0 Regular（中文字体，正文用） */
@font-face {
  font-family: 'Alibaba PuHuiTi';
  src: url('../fonts/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 2. Exo 字体家族（英文/数字用） */
@font-face {
  font-family: 'Exo';
  src: url('../fonts/Exo-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Exo';
  src: url('../fonts/Exo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Exo';
  src: url('../fonts/Exo-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* 3. PingFang SC（中文字体，标题用） */
@font-face {
    font-family: 'PingFang SC';
    src: url('../fonts/PingFang-SC.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #0f1b2d;
    --primary-mid: #1a2d4a;
    --accent: #3b82f6;
    --accent-hover: #1d4ed8;
    --accent-light: #93c5fd;
    --gold: #d4a843;
    --gold-light: #f0d078;
    --blue: #2563eb;
    --blue-light: #60a5fa;
    --teal: #0d9488;
    --dark: #0a0f1a;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family:'PingFang SC', sans-serif, 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

/* ========== Utility ========== */
.container { max-width: 1200px; margin: 0 auto; }

/* ========== Scroll Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}
.navbar.scrolled { 
    background: rgba(15, 27, 45, 0.85);
    box-shadow: var(--shadow-md);
}
.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: var(--white);
}
.navbar.scrolled .nav-links a:hover {
    color: var(--accent-light);
}
.navbar.scrolled .nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    font-family: 'PingFang SC', sans-serif;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 42px; height: 42px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}
.logo-sub {
    font-size: 0.65rem;
    color: var(--gray-500);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -2px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    font-family: 'PingFang SC', sans-serif;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 8px 18px;
    transition: all 0.25s;
    position: relative;
}
.nav-links a:not(.nav-cta):hover {
    color: var(--white);
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--white);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.25s;
}
.nav-links a:not(.nav-cta):hover::after {
    opacity: 1;
    transform: scaleX(1);
}
.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--accent-hover) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}
.mobile-menu-btn {
    display: none;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}
.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.toggle-mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.toggle-mute-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
}
.hero {
    justify-content: flex-start;
}
.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero-content { 
    color: var(--white);
    max-width: 664px;
    margin-left: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,0.15);    
    /* border-left: 1px solid rgba(128,128,128,0.5);     */
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    background: linear-gradient(270deg,rgba(255,255,255,0.00), rgba(255,255,255,0.20));
    mask-composite: exclude;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    font-family: Exo, Exo-Medium, sans-serif;    
}
.hero-badge-icon {
    width: 24px;
    height: 24px;
}
.hero h1 {
    font-size: 60px;
    /* font-weight: 900; */
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-family: Exo, Exo-Regular,Normal,Plain,Display,Roman;
}
.hero h1 .highlight {
    color: #1e6dff;
    /* background: linear-gradient(135deg, var(--accent-light), #bfdbfe); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-family: AlibabaPuHuiTi-3-55-Regular, sans-serif;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.16,1,.3,1);
    /* font-family: inherit; */
    font-family: Exo, Exo-Regular,Normal,Plain,Display,Roman;
    font-style: italic;
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.4);
    background: var(--accent-hover);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}



/* Hero Stats Row */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    
}
.hero-stat { text-align: left; }
.hero-stat.middle {
    padding: 0 15px 0 25px;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    display: block;
    font-family: AlibabaPuHuiTi-3-55-Regular, sans-serif;
}
.hero-stat-label {
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: AlibabaPuHuiTi-3-55-Regular, sans-serif;
}

/* ========== Feature Strip (WarrantySmart-inspired) ========== */
.feature-strip {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: 40px;
}
.feature-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.feature-strip-item {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    cursor: default;
}
.feature-strip-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; height: 60%;
    width: 1px;
}
.feature-strip-item:hover {
    /* background: var(--accent); */
    background: linear-gradient(180deg,#1e6dff, rgba(255,255,255,0.00));
    /* color: var(--white); */
}
.fs-icon {
    width: 60px; height: 60px;
    background: rgba(59,130,246,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
    color: var(--accent);
    transition: all 0.3s;
}
.fs-title {
    font-size: 20px;
    font-weight: 700;
    font-family: Exo, Exo-Bold;
    color: 303030;
    margin-bottom: 6px;
    transition: color 0.3s;
}
.fs-desc {
    color: #303030;    
    line-height: 1.5;
    transition: color 0.3s;
    font-size: 18px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: 400;
}

/* ========== Sections Common ========== */
.section { padding: 6rem 0; }
.section-alt { background: var(--gray-100); }
.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: var(--white);
}
.solutions-header, .contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;    
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
}
.section-tag::before, .section-tag::after {
    content: '';
    width: 20px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.section-dark .section-tag { color: var(--accent-light); }
.section-dark .section-tag::before, .section-dark .section-tag::after { background: var(--accent-light); }

/* ========== Solutions ========== */
.solutions-header h3, .contact-header h3 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    font-family: AlibabaPuHuiTi-3-55-Regular, sans-serif;
}
.section-dark .solutions-header h3 { color: var(--white); }
.solutions-header p, .contact-header p {
    font-size: 22px;
    color: #222222;
    line-height: 1.7;    
    text-align: right;
    font-family: PingFang SC, PingFang SC-Regular;
}
.section-dark .solutions-header p { color: rgba(255,255,255,0.65); }

/* ========== About / What We Do ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    /* box-shadow: var(--shadow-lg); */
}
.about-img-wrap video {
    width: 100%;
    display: block;
}
.about-text h3 {
    font-size: 34px;
    color: #001E4C;
    line-height: 1.2;
    font-family: AlibabaPuHuiTi-3-55-Regular, sans-serif;
}
.about-text p {
    color: #222222;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    font-family: PingFang SC, PingFang SC-Regular;
}
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-hl {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem; 
    background: linear-gradient(270deg,rgba(255,255,255,0.60), #d8e7ff);
    border-radius: 30px;
    transition: all 0.3s;
    position: relative;
}
.about-hl::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(270deg, #ffffff, rgba(30,109,255,0.29));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.about-hl:hover { 
    background: linear-gradient(270deg,rgba(255,255,255,0.60), #d8e7ff);    
    border-color: rgba(59,130,246,0.5);
    transform: translateY(-2px); 
}
.about-hl-icon {
    width: 56px;
    height: 56px;
    /* object-fit: contain; */
    /* flex-shrink: 0; */
}
.about-hl strong { 
    display: block; 
    color: #303030; 
    font-size: 22px; 
    margin-bottom: 2px;
    font-weight: 400;
    font-style: italic;
    font-family: Exo, Exo-Bold;
 }
.about-hl span {
     font-size: 0.8rem; 
     color: var(--gray-500); 
     font-family: PingFang SC, PingFang SC-Regular;
    }

.whyus-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;    
}
.whyus-header H3{
    font-size: 34px;
    font-weight: 400;
    font-family: AlibabaPuHuiTi-3-55-Regular, sans-serif; 
}

/* ========== Plans (WarrantySmart-inspired tiers) ========== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.plan-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(.16,1,.3,1);
    border: 1px solid var(--gray-100);
    position: relative;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.plan-card.featured {
    border: 2px solid var(--accent);
}
.plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.plan-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.plan-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
}
.plan-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: var(--white);
}
.plan-icon.sky { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.plan-icon.blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.plan-icon.teal { background: linear-gradient(135deg, var(--teal), #5eead4); }
.plan-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.plan-header p {
    color: var(--gray-500);
    font-size: 0.88rem;
}
.plan-body {
    padding: 0 2rem 2rem;
}
.plan-features { list-style: none; }
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-700);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i {
    color: var(--teal);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}
.plan-footer {
    padding: 1.5rem 2rem;
    background: var(--gray-100);
    text-align: center;
}
.plan-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
}
.btn-plan {
    background: var(--primary);
    color: var(--white);
}
.btn-plan:hover { background: var(--primary-mid); transform: translateY(-1px); }
.btn-plan-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-plan-accent:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ========== Solutions Grid ========== */
.solutions-title {
    font-size: 34px;
    color: #001E4C;
    line-height: 1.2;
    font-family: AlibabaPuHuiTi-3-55-Regular, sans-serif;
    text-align: right;
}
.solutions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.solutions-image {
    border-radius: var(--radius);
    overflow: hidden;
    /* box-shadow: var(--shadow-lg); */
}
.solutions-image img {
    width: 100%;
    height: auto;
    display: block;
}
.sol-card {
    background: var(--white);
    border-radius: 30px;
    padding: 13px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(.16,1,.3,1);
    position: relative;
    overflow: hidden;
    width: 283px;
    height: 213px;
}
.sol-card-bg1{   
    background: linear-gradient(0deg,rgba(255,255,255,0.60), #c8f0df); 
}
.sol-card-bg2{   
    background: linear-gradient(0deg,rgba(255,255,255,0.60), #ffdbd9);
}
.sol-card-bg3{   
    background: linear-gradient(0deg,rgba(255,255,255,0.60), #d8e7ff);
}
.sol-card-bg4{   
    background: linear-gradient(360deg,rgba(255,255,255,0.60) 0%, #e7e4ff 94%);
}
.sol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sol-icon {
    width: 70px; 
    height: 70px;
    border-radius: 20px;
    margin: 0 auto;
    object-fit: contain;
    transition: all 0.3s;
}
.sol-card:hover .sol-icon { transform: scale(1.05); }
.sol-card h3 {
    font-size: 22px;
    color: #303030;
    margin-bottom: 8px;
    font-weight: 400;
    font-style: italic;
    font-family: Exo, Exo-Bold;
}
.sol-card p {
    font-size: 14px;
    line-height: 20px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: 400;
    text-align: center;
    color: #303030;
}

/* ========== Video Showcase ========== */
.video-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}
.video-showcase-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
}
.video-showcase-inner video {
    width: 100%;
    display: block;
}
.video-showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 3rem 2.5rem 2rem;
    color: var(--white);
}
.video-showcase-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.video-showcase-caption p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ========== Why Choose Us ========== */
.section-dark { 
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0d1321 100%);
    background-image: url('../images/why-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: 0; right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0; left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.section-dark .container { position: relative; z-index: 2; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}
.why-features { display: flex; flex-direction: column; gap: 1rem; }
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
    width: 590px;
    height: 162px;
    background: linear-gradient(180deg,rgba(0,0,0,0.70), rgba(0,0,0,0.00));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.3s;
}
.why-card:hover { 
    background: rgba(255,255,255,0.08); 
    transform: translateY(-2px);
}
.why-card:hover::before {
    opacity: 0.7;
}
.why-icon {
    width: 100px; 
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}
.why-card-content { flex: 1; }
.why-card .strong { 
    color: var(--white); 
    display: block;
    margin-bottom: 6px; 
    font-size: 28px;
    font-family: PingFang SC, PingFang SC-SemiBold;
    font-weight: 500;

}
.why-card p {
    color: #FFFFFF; 
    font-size: 18px;
    line-height: 1.6; 
    font-weight: 400;
    font-family: PingFang SC, PingFang SC-Regular;
}
.why-mission {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 590px;
    height: 720px;
    border-radius: 30px;
    /* background: rgba(0,0,0,0.6); */
    background: linear-gradient(180deg,rgba(0,0,0,0.70), rgba(0,0,0,0.00), rgba(0,0,0,0.70));
}
.why-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.why-mission-inner {
    padding: 3rem;    
}
.mv-block { margin-bottom:  20px; }
.mv-block:last-child { margin-bottom: 0; }
.mv-label {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 26px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: 400;
}
.mv-label::before,
.mv-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}
.mv-text {
    font-size: 32px;
    font-family: Exo, Exo-Regular,Normal,Plain,Display,Roman;
    font-weight: 400;
    text-align: left;
    color: #ffffff;
    line-height: 42px;
    font-style: normal;
}
.mv-divider { 
    width: 100%; 
    height: 1px; 
    background: rgba(255,255,255,0.1); 
    margin: 2.5rem 0;
    background-image: repeating-linear-gradient(to right, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 8px, transparent 8px, transparent 16px);
}

/* ========== Partners ========== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.partner-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(.16,1,.3,1);
    position: relative;
    overflow: hidden;
}
.partner-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.partner-card:hover::after { transform: scaleX(1); }
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.partner-logo {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    color: var(--white);
}
.partner-logo.sky { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.partner-logo.blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.partner-logo.teal { background: linear-gradient(135deg, var(--teal), #5eead4); }
.partner-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.partner-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== Company ========== */
.company-section {
    background: linear-gradient(180deg, var(--white) 0%, #f0f9ff 30%, var(--white) 100%);
    background-image: url('../images/company-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    height: 884px;
}
.company-section::before {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.company-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}
.company-header {
    text-align: center;
}
.company-header h3 {
    font-size: 34px;
    font-weight: 800;
    color: #001e4c;
    margin-bottom: 1rem;
    line-height: 49px;
}
.company-header .gradient-bar {
    margin-left: auto;
    margin-right: auto;
}
.company-subtitle {
    font-size: 1rem;
    color: #222222;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}
.company-text p {
    color: #303030;    
    font-size: 24px;
    line-height: 33px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    /* margin-top: 1rem; */
}
.location-card {
    width: 398px;
    height: 172px;
    background: linear-gradient(270deg,rgba(255,255,255,0.60), #d8e7ff);
    border: 2px solid #ffffff;
    border-left-width: 6px;
    border-left-color: #1e6dff;
    border-radius: 0 10px 100px 0;
    padding: 1.5rem;
    position: relative;
}
.location-card i {
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.location-card strong {
    /* display: block; */
    margin-bottom: 4px;
    font-size: 26px;
    font-family: PingFang SC, PingFang SC-SemiBold;
    font-weight: 600;
    text-align: left;
    color: #303030;
    line-height: 42px;
}
.location-card p {
    opacity: 0.8;
    font-size: 22px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: 400;
    text-align: left;
    color: #303030;
    line-height: 30px;
}
.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 18px;
    padding-top: 48px;
}
.c-stat {
    text-align: center;
    padding: 1rem;
    position: relative;
}
.c-stat:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 95px;
    background-color: #333333;
    opacity: 0.1;
}
.c-stat-num {
    font-size: 48px;    
    color: #1E6DFF;
    display: block;
    font-family: Exo, Exo-Regular,Normal,Plain,Display,Roman;
    font-weight: 400;
}
.c-stat-label {
    font-size: 24px;
    color: #333333;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    margin-top: 4px;
    font-family:AlibabaPuHuiTi-Regular;
    font-weight: 400;
}
.global-map {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
}
.global-map h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.global-map h4 i { color: var(--accent); }
.location-list { list-style: none; }
.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--gray-100);
    border-radius: 10px;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.location-item:hover { background: rgba(59,130,246,0.05); transform: translateX(4px); }
.location-item i { color: var(--accent); font-size: 0.9rem; width: 20px; text-align: center; }
.location-item strong { color: var(--primary); min-width: 90px; }
.location-item span { color: var(--gray-500); }
.location-item.active {
    background: rgba(59,130,246,0.08);
    border-left: 3px solid var(--accent);
}

/* ========== Malaysia Section ========== */
.my-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.my-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.4s;
}
.my-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}
.my-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
}
.my-card-icon.sky { background: rgba(59,130,246,0.2); color: var(--accent-light); }
.my-card-icon.gold { background: rgba(212,168,67,0.2); color: var(--gold-light); }
.my-card-icon.teal { background: rgba(13,148,136,0.2); color: #5eead4; }
.my-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.my-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ========== Contact ========== */
.contact-section { 
    padding: 6rem 0; 
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 50%, rgba(255,255,255,0.95) 100%); 
    background-image: url('../images/contact-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}
.contact-section .container { position: relative; z-index: 2; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
    overflow: hidden;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.contact-card-header {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.contact-card-header.malaysia {
    background-image: url('../images/contact-malaysia.png');
}
.contact-card-header.china {
    background-image: url('../images/contact-china.png');
}
.contact-card-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%); */
}
.contact-card-body {
    padding: 2rem;
}
.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}
.contact-card h3 i { color: var(--accent); }
.c-detail { 
    margin-bottom: 1.2rem; 
}
.c-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.c-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.c-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}
.c-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.c-detail label {
    display: block;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
    height: 42px;
    font-family: PingFang SC, PingFang SC-SemiBold;    
    text-align: left;
    color: #303030;
    line-height: 42px;
}
.c-detail p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.c-detail a { 
    color: #1E6DFF; 
    font-family: PingFang SC, PingFang SC-SemiBold;    
    font-size: 20px;
}
.c-detail:last-child { margin-bottom: 0; }
.c-detail a:hover { color: var(--accent-hover); text-decoration: underline; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* ========== Footer ========== */
.footer {
    /* background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%); */
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    /* border-bottom: 1px solid rgba(255,255,255,0.08); */
}
.footer-brand .logo-text { color: var(--white); font-size: 24px; }
.footer-brand p {
    color: #ffffff;
    font-size: 18px;
    margin-top: 1rem;
    line-height: 1.7;
    font-family: AlibabaPuHuiTi-Regular;
}
.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
    font-family: AlibabaPuHuiTi-Regular;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    margin-top: 1rem;
    color: #999999;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gradient-bar {
    width: 300px;
    height: 12px;
    background: linear-gradient(270deg, #ffffff, #1e6dff);
    margin-bottom: 1.5rem;
}
.gradient-bar-reverse {
    background: linear-gradient(270deg, #1e6dff, #ffffff);
    margin-left: auto;
}
.gradient-bar-header {
    width: 160px;
    margin-left: auto;
    margin-right: auto;
}
.gradient-bar-why-choose-us {
    width: 300px;
    height: 12px;
    background: linear-gradient(270deg, rgba(0,0,0,0), #1e6dff);
    margin: 0 auto 20px;
}
.gradient-bar-footer {
    width: 115px;
    height: 5px;
    background: linear-gradient(270deg, rgba(255,255,255,0), #ffffff);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
    .feature-strip-item:nth-child(2)::after { display: none; }
    .about-grid, .company-grid, .why-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .my-services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { min-height: auto; padding: 6rem 0 4rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .feature-strip .container { grid-template-columns: 1fr; }
    .feature-strip-item::after { display: none !important; }
    .solutions-grid { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h3 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
