﻿/* ============================================================
   Baomotech — Premium Industrial Design System v2
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* Background — deeper void */
    --bg-void:     #070c16;
    --bg-deep:     #0b1320;
    --bg-card:     #111b2b;
    --bg-elevated: #162235;
    --bg-surface:  #1c2b40;

    /* Accent Blue */
    --accent:        #3b82f6;
    --accent-bright: #60a5fa;
    --accent-glow:   rgba(59,130,246,0.18);
    --accent-soft:   rgba(59,130,246,0.05);
    --accent-mid:    rgba(59,130,246,0.10);

    /* Gold — warmer metallic */
    --gold:         #d4a83c;
    --gold-bright:  #ebd07c;
    --gold-dim:     #a8842a;
    --gold-soft:    rgba(212,168,60,0.10);
    --gold-mid:     rgba(212,168,60,0.16);
    --gold-glow:    rgba(212,168,60,0.22);

    /* Text */
    --text-bright:    #fafbfc;
    --text-primary:   #e2e6ec;
    --text-secondary: #8b98a8;
    --text-muted:     #546070;

    /* Borders */
    --border:       rgba(255,255,255,0.05);
    --border-light: rgba(255,255,255,0.09);
    --border-gold:  rgba(212,168,60,0.18);

    /* Radii */
    --radius-xs:   6px;
    --radius-sm:   10px;
    --radius-md:   18px;
    --radius-lg:   28px;
    --radius-xl:   36px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs:  0 1px 4px rgba(0,0,0,0.3);
    --shadow-sm:  0 4px 16px rgba(0,0,0,0.35);
    --shadow-md:  0 12px 40px rgba(0,0,0,0.50);
    --shadow-lg:  0 24px 72px rgba(0,0,0,0.60);
    --shadow-gold:0 0 60px rgba(212,168,60,0.12);

    /* Easing */
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 96px;
    --space-2xl: 140px;
}

/* ---------- Noise Filter (SVG) ---------- */
/* Rendered via hidden SVG at body level */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:110px; }
body {
    font-family: "DIN Pro", "DINPro", "DIN 2014", "DIN Alternate", "Bahnschrift", "Arial Narrow", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    background: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.78;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.08rem;
    letter-spacing: -0.1px;
    position: relative;
}

/* ---------- Grid + Noise Overlay ---------- */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(212,168,60,0.04) 0%, transparent 70%),
        radial-gradient(circle at 85% 100%, rgba(59,130,246,0.03) 0%, transparent 60%);
    opacity: 0.7;
}

/* Dot grid pattern layer */
body::after {
    content: '';
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,0.025) 0.8px, transparent 0.8px);
    background-size: 40px 40px;
    opacity: 0.55;
}

/* Grain/Noise overlay via inline SVG at bottom of HTML */
.grain-overlay {
    position: fixed; inset: 0; z-index: 9998; pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: overlay;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,168,60,0.3); }
html { scrollbar-color: rgba(255,255,255,0.08) var(--bg-void); scrollbar-width: thin; }

::selection { background: rgba(212,168,60,0.28); color: #fff; }

/* ---------- Utility ---------- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 56px; }
.section-label {
    font-size: 0.68rem; font-weight: 800; color: var(--gold);
    letter-spacing: 6px; text-transform: uppercase; margin-bottom: 16px;
    display: inline-flex; align-items: center; gap: 12px;
}
.section-label::before {
    content: ''; display: inline-block; width: 28px; height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 1px;
}
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900;
    color: var(--text-bright); margin-bottom: 22px; line-height: 1.10;
    letter-spacing: -1px;
}
.section-sub {
    font-size: 1.15rem; color: var(--text-secondary);
    max-width: 560px; line-height: 1.88;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---------- Language Switcher ---------- */
.lang-switcher {
    position: fixed; top: 28px; right: 28px; z-index: 9999;
    display: flex; gap: 3px;
    background: rgba(7,12,22,0.94);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm); padding: 4px;
    box-shadow: var(--shadow-sm);
}
.lang-btn {
    background: none; border: none; color: var(--text-muted);
    font-size: 0.64rem; font-weight: 700; cursor: pointer;
    padding: 5px 11px; border-radius: var(--radius-xs);
    transition: all 0.3s var(--ease-out);
    text-transform: uppercase; letter-spacing: 0.5px;
    text-decoration: none; line-height: 1.5;
}
.lang-btn:hover { color: var(--text-bright); background: rgba(255,255,255,0.04); }
.lang-btn.active { color: var(--gold); background: var(--gold-soft); }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(7,12,22,0.88);
    backdrop-filter: blur(32px) saturate(1.3);
    -webkit-backdrop-filter: blur(32px) saturate(1.3);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.5s var(--ease-out);
}
.navbar.scrolled {
    background: rgba(4,7,14,0.97);
    border-bottom-color: rgba(212,168,60,0.08);
    box-shadow: 0 8px 64px rgba(0,0,0,0.6);
}
.nav-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 56px;
    height: 84px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 14px; text-decoration: none;
    position: relative; z-index: 2;
}
.nav-logo {
    width: 46px; height: 46px;
    background: linear-gradient(140deg, var(--accent), #1d4ed8);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.62rem; font-weight: 900; color: #fff;
    letter-spacing: 0; flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
    font-size: 1.08rem; font-weight: 800; color: #fff;
    letter-spacing: 1.6px; line-height: 1;
}
.nav-brand-sub {
    font-size: 0.56rem; color: var(--text-secondary);
    letter-spacing: 2.2px; text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; gap: 42px; list-style: none; }
.nav-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.4px;
    transition: color 0.3s; position: relative; padding: 8px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.4s var(--ease-out);
    border-radius: 2px;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
    background: transparent; border: 1.5px solid var(--gold);
    color: var(--gold); padding: 11px 28px;
    border-radius: var(--radius-sm); text-decoration: none;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
    transition: all 0.4s var(--ease-out);
    flex-shrink: 0; position: relative; overflow: hidden;
    z-index: 2;
}
.nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    opacity: 0; transition: opacity 0.4s var(--ease-out);
}
.nav-cta:hover {
    border-color: var(--gold-bright);
    box-shadow: 0 0 32px rgba(212,168,60,0.18), 0 0 64px rgba(212,168,60,0.08);
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover span { color: var(--bg-void); }

.nav-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 10px; color: var(--text-secondary);
    transition: color 0.3s; z-index: 2;
}
.nav-toggle:hover { color: var(--gold); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero — Fullscreen Immersive ---------- */
.hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center; overflow: hidden;
    padding-top: 84px;
}
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg video {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.18; filter: brightness(0.5) saturate(0.6);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        170deg,
        rgba(7,12,22,0.96) 0%,
        rgba(7,12,22,0.45) 48%,
        rgba(7,12,22,0.82) 100%
    );
}
.hero-glow {
    position: absolute; top: 0; right: -10%;
    width: 1000px; height: 1000px;
    background: radial-gradient(circle at 30% 40%, rgba(59,130,246,0.09) 0%, transparent 55%);
    pointer-events: none; z-index: 2; animation: glow-pulse 8s ease-in-out infinite;
}
.hero-glow-2 {
    position: absolute; bottom: 0; left: -8%;
    width: 700px; height: 700px;
    background: radial-gradient(circle at 60% 60%, rgba(212,168,60,0.06) 0%, transparent 55%);
    pointer-events: none; z-index: 2; animation: glow-pulse 10s ease-in-out infinite reverse;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Particle field */
.hero-particles {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background-image:
        radial-gradient(1.2px 1.2px at 15% 25%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 72% 55%, rgba(255,255,255,0.14), transparent),
        radial-gradient(1.5px 1.5px at 40% 78%, rgba(255,255,255,0.09), transparent),
        radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,0.12), transparent);
    background-size: 70px 70px, 100px 100px, 160px 160px, 90px 90px;
    animation: particle-drift 30s linear infinite;
}
@keyframes particle-drift {
    0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 70px 70px, -100px 100px, 160px -160px, -90px -90px; }
}

.hero-inner {
    position: relative; z-index: 10;
    max-width: 1320px; margin: 0 auto; padding: 0 56px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center; width: 100%;
}
.hero-content { max-width: 640px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold-soft); border: 1px solid var(--border-gold);
    color: var(--gold-bright); padding: 9px 22px;
    border-radius: var(--radius-full); font-size: 0.72rem;
    font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 42px;
    animation: fadeInUp 0.9s var(--ease-out) 0.1s both;
}
.hero-badge-dot {
    width: 7px; height: 7px; background: var(--gold);
    border-radius: 50%;
    animation: pulse-gold 2.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212,168,60,0.6);
}
@keyframes pulse-gold {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.3; transform: scale(0.6); }
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 900;
    line-height: 1.05; color: #fff; margin-bottom: 32px;
    letter-spacing: -2px;
    animation: fadeInUp 0.9s var(--ease-out) 0.2s both;
}
.hero h1 .accent {
    display: block;
    background: linear-gradient(135deg, var(--gold), #eed88a, #f8e6a0, var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.hero-desc {
    font-size: 1.24rem; color: var(--text-secondary);
    margin-bottom: 52px; line-height: 2; max-width: 520px;
    animation: fadeInUp 0.9s var(--ease-out) 0.3s both;
}
.hero-actions {
    display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
    animation: fadeInUp 0.9s var(--ease-out) 0.4s both;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(140deg, var(--gold), var(--gold-dim));
    color: #0a0e14; padding: 17px 48px; border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 800; font-size: 0.92rem;
    letter-spacing: 0.5px; transition: all 0.45s var(--ease-spring);
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 40px rgba(212,168,60,0.15);
    position: relative; overflow: hidden; border: none; cursor: pointer;
    z-index: 1;
}
.btn-primary::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(140deg, var(--gold-bright), var(--gold));
    opacity: 0; transition: opacity 0.45s var(--ease-out);
    border-radius: var(--radius-sm);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 36px rgba(0,0,0,0.5), 0 0 80px rgba(212,168,60,0.3), 0 0 120px rgba(212,168,60,0.1);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(-2px) scale(0.97); }

.btn-ghost {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.92rem; font-weight: 500;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.4s var(--ease-out); padding: 17px 0;
    position: relative;
}
.btn-ghost:hover { color: #fff; gap: 14px; }
.btn-ghost svg { transition: transform 0.4s var(--ease-out); }
.btn-ghost:hover svg { transform: translateX(6px); }

/* Hero Stats */
.hero-stats {
    display: flex; gap: 60px; margin-top: 80px;
    padding-top: 50px; border-top: 1px solid rgba(255,255,255,0.06);
    animation: fadeInUp 0.9s var(--ease-out) 0.5s both;
}
.hero-stat-num {
    font-size: 2.6rem; font-weight: 900; line-height: 1;
    margin-bottom: 8px; letter-spacing: -1px;
}
.hero-stat-num .gold { color: var(--gold); }
.hero-stat-num .blue { color: var(--accent-bright); }
.hero-stat-label {
    font-size: 0.74rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 500;
}
.hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: fadeInUp 0.9s var(--ease-out) 0.3s both;
}
.hero-img-wrap {
    position: relative; width: 100%; max-width: 580px;
    transition: transform 0.1s ease-out;
}
.hero-img-wrap img {
    width: 100%; height: auto;
    filter: drop-shadow(0 48px 96px rgba(0,0,0,0.5)) drop-shadow(0 0 60px rgba(59,130,246,0.10));
    border-radius: var(--radius-sm);
    transition: transform 0.1s ease-out;
}
.hero-img-glow {
    position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
    width: 90%; height: 70px;
    background: radial-gradient(ellipse, rgba(212,168,60,0.22) 0%, transparent 70%);
    filter: blur(36px);
}
.hero-img-ring {
    position: absolute; inset: -30px;
    border: 1px solid rgba(212,168,60,0.05);
    border-radius: 50%; animation: spin-slow 40s linear infinite; pointer-events: none;
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Scroll-Down Indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 8px;
    cursor: pointer; opacity: 0.55; transition: opacity 0.4s;
    animation: fadeInUp 1s var(--ease-out) 1s both;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-indicator span {
    font-size: 0.6rem; color: var(--text-muted);
    letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
}
.scroll-indicator .scroll-chevron {
    width: 22px; height: 22px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: scroll-chevron 1.8s ease-in-out infinite;
}
.scroll-indicator .scroll-chevron:nth-child(3) { animation-delay: 0.15s; }
.scroll-indicator .scroll-chevron:nth-child(4) { animation-delay: 0.30s; }
@keyframes scroll-chevron {
    0%, 100% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50%      { opacity: 1; transform: rotate(45deg) translate(5px, 5px); }
}

/* ---------- Section Spacing ---------- */
section { padding: 150px 0; position: relative; }
.section-header { margin-bottom: 84px; }

/* Section gradient separators */
section::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; max-width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,60,0.15), transparent);
    pointer-events: none;
}
section:first-of-type::before,
.adv-bar::before { display: none; }

/* ---------- Advantage Bar ---------- */
.adv-bar {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 110px 0; position: relative;
}
.adv-bar::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 500px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,60,0.35), transparent);
}
.adv-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-radius: var(--radius-lg); overflow: hidden;
    gap: 0; background: var(--border); box-shadow: var(--shadow-md);
}
.adv-item {
    background: var(--bg-card); padding: 64px 36px; text-align: center;
    transition: all 0.5s var(--ease-out); position: relative; overflow: hidden;
    cursor: default;
}
.adv-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(212,168,60,0.05), transparent 70%);
    opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.adv-item::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    border-radius: var(--radius-lg); pointer-events: none;
}
.adv-item:hover {
    background: var(--bg-elevated); transform: translateY(-6px); z-index: 2;
}
.adv-item:hover::before { opacity: 1; }
.adv-item:hover::after {
    border-color: rgba(212,168,60,0.2);
    box-shadow: inset 0 0 60px rgba(212,168,60,0.04);
}

.adv-icon {
    width: 64px; height: 64px; margin: 0 auto 28px;
    background: var(--gold-soft); border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; position: relative; z-index: 1;
    transition: all 0.45s var(--ease-spring);
}
.adv-item:hover .adv-icon {
    transform: scale(1.1);
    box-shadow: 0 0 32px var(--gold-glow);
    border-color: var(--gold);
}
.adv-item h4 {
    font-size: 1.1rem; font-weight: 700; color: var(--text-bright);
    margin-bottom: 14px; position: relative; z-index: 1;
}
.adv-item p {
    font-size: 0.9rem; color: var(--text-secondary);
    line-height: 1.75; position: relative; z-index: 1;
}

/* ---------- About ---------- */
.about { background: var(--bg-void); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 120px; align-items: center;
}
.about-text p {
    color: var(--text-secondary); margin-bottom: 22px;
    line-height: 1.9; font-size: 1.02rem;
}
.about-highlight {
    background: linear-gradient(140deg, rgba(212,168,60,0.09), rgba(212,168,60,0.02));
    border: 1px solid var(--border-gold); border-radius: var(--radius-md);
    padding: 38px; margin-top: 42px; position: relative; overflow: hidden;
}
.about-highlight::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
    border-radius: 3px 0 0 3px;
}
.about-highlight h4 {
    font-size: 1.02rem; color: var(--gold); margin-bottom: 10px; font-weight: 700;
}
.about-highlight p { color: var(--text-secondary); margin: 0; font-size: 0.92rem; }
.about-nums { display: flex; gap: 56px; margin-top: 52px; }
.about-num-item h3 {
    font-size: 2.6rem; font-weight: 900;
    background: linear-gradient(140deg, var(--gold), #eed88a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 6px; letter-spacing: -1px;
}
.about-num-item p {
    font-size: 0.68rem; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 2.5px; margin: 0; font-weight: 600;
}
.about-visual { position: relative; }
.about-img-card {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); position: relative; z-index: 1;
    box-shadow: var(--shadow-md);
}
.about-img-card img {
    width: 100%; height: auto; display: block;
    filter: brightness(0.8);
}
.about-img-overlay {
    position: absolute; bottom: -24px; right: -24px;
    width: 240px; height: 240px;
    background: linear-gradient(140deg, rgba(212,168,60,0.08), transparent);
    border: 1px solid rgba(212,168,60,0.08);
    border-radius: var(--radius-lg); z-index: 0;
}
.about-badge {
    position: absolute; top: 32px; left: 32px;
    background: rgba(4,7,14,0.94); border: 1px solid rgba(212,168,60,0.28);
    border-radius: var(--radius-sm); padding: 20px 28px;
    backdrop-filter: blur(16px); z-index: 2;
    box-shadow: var(--shadow-sm);
}
.about-badge-num {
    font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.about-badge-label {
    font-size: 0.66rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; font-weight: 600;
}

/* ---------- Product ---------- */
.product {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.product-grid {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 100px; align-items: center;
}
.product-visual {
    background: linear-gradient(170deg, #060e1a, #0b1528);
    border-radius: var(--radius-lg); padding: 64px;
    border: 1px solid var(--border); position: relative; overflow: hidden;
    box-shadow: var(--shadow-md);
}
.product-visual::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,60,0.5), transparent);
}
.product-visual::after {
    content: ''; position: absolute; bottom: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(59,130,246,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.product-visual img {
    width: 100%; height: auto; position: relative; z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.product-tag {
    display: inline-block; background: var(--gold-soft);
    border: 1px solid var(--border-gold); color: var(--gold);
    padding: 7px 20px; border-radius: var(--radius-full);
    font-size: 0.64rem; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; margin-bottom: 24px;
}
.product-info h3 {
    font-size: 2.6rem; font-weight: 900; color: #fff;
    margin-bottom: 24px; line-height: 1.12; letter-spacing: -1px;
}
.product-info .desc {
    color: var(--text-primary); line-height: 1.9; margin-bottom: 44px;
    font-size: 1.02rem;
}
.spec-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-bottom: 44px;
}
.spec-card {
    background: var(--accent-soft); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 26px 18px;
    text-align: center; transition: all 0.4s var(--ease-out);
    cursor: default; position: relative;
}
.spec-card::after {
    content: ''; position: absolute; inset: -1px;
    border-radius: var(--radius-sm); border: 1px solid transparent;
    transition: all 0.4s var(--ease-out); pointer-events: none;
}
.spec-card:hover {
    border-color: var(--border-gold);
    background: var(--gold-soft);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 28px rgba(212,168,60,0.08);
}
.spec-card:hover::after { border-color: rgba(212,168,60,0.25); }
.spec-card h5 {
    font-size: 1.12rem; font-weight: 800; color: var(--gold);
    margin-bottom: 6px; letter-spacing: -0.5px;
}
.spec-card p { font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }

/* ---------- Industries ---------- */
.industries { background: var(--bg-void); }
.ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ind-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 64px;
    transition: all 0.5s var(--ease-out);
    position: relative; overflow: hidden;
}
.ind-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.ind-card::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out); pointer-events: none;
}
.ind-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 48px rgba(212,168,60,0.06);
}
.ind-card:hover::before { opacity: 1; }
.ind-card:hover::after {
    border-color: rgba(212,168,60,0.15);
    box-shadow: inset 0 0 80px rgba(212,168,60,0.03);
}
.ind-icon {
    width: 64px; height: 64px; background: var(--gold-soft);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 32px;
    transition: all 0.45s var(--ease-spring);
}
.ind-card:hover .ind-icon {
    transform: scale(1.12);
    box-shadow: 0 0 28px var(--gold-glow);
    border-color: var(--gold);
}
.ind-card h4 {
    font-size: 1.4rem; font-weight: 700; color: var(--text-bright);
    margin-bottom: 16px; letter-spacing: -0.3px;
}
.ind-card > p {
    color: var(--text-secondary); font-size: 0.92rem;
    line-height: 1.75; margin-bottom: 30px;
}
.ind-features {
    list-style: none; display: grid;
    grid-template-columns: 1fr 1fr; gap: 12px;
}
.ind-features li {
    color: var(--text-secondary); font-size: 0.8rem;
    display: flex; align-items: center; gap: 12px; padding: 6px 0;
}
.ind-features li::before {
    content: ''; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    flex-shrink: 0; opacity: 0.55;
}

/* ---------- Stats Band ---------- */
.stats-band {
    background: linear-gradient(170deg, rgba(212,168,60,0.06), rgba(59,130,246,0.04));
    border-top: 1px solid rgba(212,168,60,0.10);
    border-bottom: 1px solid rgba(212,168,60,0.10);
    padding: 120px 0;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; background: rgba(212,168,60,0.05);
    border-radius: var(--radius-lg); overflow: hidden;
}
.stats-item {
    background: var(--bg-void); padding: 64px 48px; text-align: center;
    transition: all 0.4s var(--ease-out); cursor: default;
}
.stats-item:hover { background: rgba(212,168,60,0.03); }
.stats-num {
    font-size: 3.2rem; font-weight: 900; line-height: 1;
    background: linear-gradient(140deg, var(--gold), #eed88a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 12px;
}
.stats-label {
    font-size: 0.7rem; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 2.5px; font-weight: 600;
}

/* ---------- Gallery / Cases ---------- */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.gallery-item {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; aspect-ratio: 4/3;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
}
.gallery-item::before {
    content: ''; position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(180deg, transparent 55%, rgba(7,12,22,0.55));
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}
.gallery-item::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: all 0.5s var(--ease-out);
}
.gallery-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 32px rgba(212,168,60,0.06);
}
.gallery-item:hover::before { opacity: 0.7; }
.gallery-item:hover::after {
    border-color: rgba(212,168,60,0.2);
    box-shadow: inset 0 0 40px rgba(212,168,60,0.04);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); }

/* ---------- CTA / Contact ---------- */
.cta-section {
    background: linear-gradient(170deg, rgba(212,168,60,0.07), rgba(59,130,246,0.03));
    border-top: 1px solid rgba(212,168,60,0.14);
    border-bottom: 1px solid rgba(212,168,60,0.14);
    padding: 140px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 700px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,60,0.6), transparent);
}
.cta-section h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 900;
    color: var(--text-bright); margin-bottom: 18px; letter-spacing: -1px;
}
.cta-section > .container > p {
    color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 28px;
}
.cta-phone {
    font-size: 2.6rem; font-weight: 900;
    background: linear-gradient(140deg, var(--gold), #eed88a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: 6px; margin-bottom: 52px; display: block;
}

/* Contact Form */
.cta-form {
    max-width: 600px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 56px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.cta-form::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,60,0.3), transparent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.cta-form .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 0;
}
.cta-form .form-group { margin-bottom: 26px; text-align: left; }
.cta-form label {
    display: block; font-size: 0.76rem; color: var(--text-secondary);
    margin-bottom: 10px; font-weight: 600; letter-spacing: 0.4px;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%; padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-sm);
    color: var(--text-primary); font-size: 0.96rem;
    font-family: inherit; transition: all 0.35s var(--ease-out);
    outline: none;
}
.cta-form input:hover,
.cta-form select:hover,
.cta-form textarea:hover {
    border-color: rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.05);
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 4px rgba(212,168,60,0.08), 0 0 20px rgba(212,168,60,0.05);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.cta-form textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
.cta-form select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b98a8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 18px center;
    padding-right: 44px;
}
.cta-form select option {
    background: var(--bg-elevated); color: var(--text-primary);
}

/* ---------- Footer ---------- */
footer {
    background: var(--bg-deep); border-top: 1px solid rgba(255,255,255,0.04);
    padding: 88px 0 52px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr;
    gap: 100px; margin-bottom: 68px;
}
.footer-brand .nav-brand { margin-bottom: 22px; display: inline-flex; }
.footer-brand p {
    color: var(--text-secondary); font-size: 0.9rem;
    line-height: 1.8; max-width: 380px;
}
.footer-col h5 {
    font-size: 0.76rem; font-weight: 700; color: var(--text-secondary);
    letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 28px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 16px; }
.footer-col a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.9rem; transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact {
    display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start;
}
.footer-contact-icon {
    width: 36px; height: 36px; background: var(--gold-soft);
    border: 1px solid var(--border-gold); border-radius: var(--radius-xs);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; flex-shrink: 0; margin-top: 1px;
}
.footer-contact-label {
    font-size: 0.72rem; color: var(--text-secondary);
    display: block; margin-bottom: 2px;
}
.footer-contact-value { color: var(--text-primary); font-size: 0.92rem; }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 36px;
    text-align: center; color: var(--text-secondary); font-size: 0.82rem;
}
.footer-bottom a {
    color: var(--gold); text-decoration: none; transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--text-bright); }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed; bottom: 36px; right: 36px; z-index: 999;
    width: 50px; height: 50px;
    background: var(--bg-elevated); border: 1px solid var(--border-light);
    border-radius: 50%; color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    background: var(--gold); color: var(--bg-void);
    border-color: var(--gold); transform: translateY(-4px);
    box-shadow: 0 0 36px var(--gold-glow);
}

/* ---------- Scroll Reveal — Enhanced ---------- */
.reveal {
    opacity: 0; transform: translateY(48px);
    transition: all 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered card reveals */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.34s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.40s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.46s; }

/* ---------- Focus Visible ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px;
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute; top: -100px; left: 24px;
    background: var(--gold); color: #0a0e14;
    padding: 13px 28px; z-index: 10000; border-radius: var(--radius-xs);
    font-weight: 700; text-decoration: none; transition: top 0.35s;
}
.skip-link:focus { top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .container, .nav-inner, .hero-inner { padding-left: 36px; padding-right: 36px; }
}
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 72px; }
    .hero-visual { display: none; }
    .about-grid, .product-grid { grid-template-columns: 1fr; gap: 72px; }
    .about-visual { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
    .product-info h3 { font-size: 2.2rem; }
    section { padding: 110px 0; }
}
@media (max-width: 900px) {
    .ind-grid { grid-template-columns: 1fr; }
    .adv-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .container, .nav-inner { padding-left: 28px; padding-right: 28px; }
    .hero-stats { gap: 36px; flex-wrap: wrap; }
    .hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .scroll-indicator { display: none; }

    /* Mobile Nav */
    .nav-links {
        display: none; position: absolute; top: 84px; left: 0; right: 0;
        background: rgba(4,7,14,0.98); backdrop-filter: blur(28px);
        flex-direction: column; gap: 0; padding: 20px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-links li { padding: 0 28px; }
    .nav-links a {
        display: block; padding: 16px 0; font-size: 1.02rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-toggle { display: block; }
    .nav-cta { margin-left: auto; margin-right: 12px; }
}
@media (max-width: 640px) {
    .adv-grid, .stats-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-nums { flex-wrap: wrap; gap: 32px; }
    .hero-stats { flex-wrap: wrap; gap: 28px; margin-top: 52px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .ind-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 48px; }
    .cta-phone { font-size: 1.8rem; }
    .lang-switcher { top: auto; bottom: 20px; right: 16px; }
    .product-visual { padding: 36px; }
    .ind-card, .adv-item { padding: 40px 28px; }
    .cta-form { padding: 36px 24px; }
    .cta-form .form-row { grid-template-columns: 1fr; }
    .hero-stats { margin-top: 56px; padding-top: 36px; }
    section { padding: 80px 0; }
    .back-to-top { bottom: 22px; right: 22px; width: 44px; height: 44px; }
    .about-grid { gap: 52px; }
    .product-grid { gap: 52px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .scroll-indicator { display: none; }
}

/* ============================================================
   Baomotech — Lectra-inspired refinement layer
   Clean precision, white machinery, connected cutting-room feel
   ============================================================ */
:root {
    --bg-void: #f5f7fb;
    --bg-deep: #ffffff;
    --bg-card: #ffffff;
    --bg-elevated: #f7f9fc;
    --bg-surface: #eef3f8;
    --accent: #0057d8;
    --accent-bright: #1774ff;
    --accent-glow: rgba(0, 87, 216, 0.18);
    --accent-soft: rgba(0, 87, 216, 0.055);
    --accent-mid: rgba(0, 87, 216, 0.11);
    --gold: #b08a3b;
    --gold-bright: #caa760;
    --gold-dim: #8e6b2d;
    --gold-soft: rgba(176, 138, 59, 0.08);
    --gold-mid: rgba(176, 138, 59, 0.14);
    --gold-glow: rgba(176, 138, 59, 0.14);
    --text-bright: #08111f;
    --text-primary: #1e2b3d;
    --text-secondary: #5c6878;
    --text-muted: #8a94a3;
    --border: rgba(8, 17, 31, 0.09);
    --border-light: rgba(8, 17, 31, 0.12);
    --border-gold: rgba(176, 138, 59, 0.2);
    --shadow-xs: 0 1px 3px rgba(8, 17, 31, 0.08);
    --shadow-sm: 0 8px 24px rgba(8, 17, 31, 0.08);
    --shadow-md: 0 22px 58px rgba(8, 17, 31, 0.11);
    --shadow-lg: 0 34px 86px rgba(8, 17, 31, 0.16);
    --shadow-gold: 0 18px 45px rgba(176, 138, 59, 0.10);
}

body {
    background: linear-gradient(180deg, #f9fbff 0%, #eef3f8 42%, #ffffff 100%);
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 0;
}

body::before {
    background-image:
        linear-gradient(90deg, rgba(8,17,31,0.032) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8,17,31,0.032) 1px, transparent 1px),
        radial-gradient(circle at 78% 12%, rgba(0,87,216,0.10) 0%, transparent 34%),
        radial-gradient(circle at 18% 90%, rgba(176,138,59,0.08) 0%, transparent 32%);
    background-size: 72px 72px, 72px 72px, auto, auto;
    opacity: 0.62;
    z-index: 0;
}

body::after,
.grain-overlay,
.hero-particles,
.hero-glow,
.hero-glow-2,
.hero-img-ring {
    display: none !important;
}

.section-label { color: var(--accent); letter-spacing: 4px; }
.section-label::before { background: linear-gradient(90deg, var(--accent), transparent); }
.section-title { color: var(--text-bright); letter-spacing: -0.02em; }
.section-sub,
.about-text p,
.product-info .desc,
.ind-card > p,
.adv-item p { color: var(--text-secondary); }

.navbar {
    background: rgba(255,255,255,0.84);
    border-bottom: 1px solid rgba(8,17,31,0.08);
    box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom-color: rgba(8,17,31,0.1);
    box-shadow: 0 14px 40px rgba(8,17,31,0.08);
}

.nav-inner { height: 76px; }
.nav-logo {
    background: linear-gradient(145deg, #0057d8, #003a91);
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(0,87,216,0.22);
}
.nav-brand-name,
.product-info h3 { color: var(--text-bright); }
.nav-brand-sub,
.nav-links a,
.btn-ghost { color: var(--text-secondary); }
.nav-links a::after { background: var(--accent); }
.nav-links a:hover,
.nav-links a.active,
.btn-ghost:hover { color: var(--accent); }

.nav-cta {
    border-color: rgba(0,87,216,0.26);
    color: var(--accent);
    border-radius: 4px;
    background: rgba(0,87,216,0.04);
}
.nav-cta::before { background: var(--accent); }
.nav-cta:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 36px rgba(0,87,216,0.16);
}
.nav-cta:hover span { color: #fff; }

.lang-switcher {
    top: 22px;
    background: rgba(255,255,255,0.88);
    border-color: rgba(8,17,31,0.1);
    box-shadow: 0 10px 28px rgba(8,17,31,0.08);
}
.lang-btn { color: var(--text-secondary); }
.lang-btn:hover,
.lang-btn.active {
    color: var(--accent);
    background: rgba(0,87,216,0.07);
}

.hero {
    min-height: 92vh;
    background:
        linear-gradient(100deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 37%, rgba(233,240,249,0.46) 64%, rgba(255,255,255,0.24) 100%),
        url("../images/baomotech-dc3228.png") right 54% / 58% auto no-repeat,
        linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
    padding-top: 76px;
}
.hero-video-bg,
.hero-overlay { display: none; }
.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(72vw, 980px);
    height: 22%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.94));
    pointer-events: none;
    z-index: 1;
}
.hero-inner {
    grid-template-columns: minmax(430px, 0.82fr) minmax(520px, 1.18fr);
    gap: 60px;
}
.hero-content { max-width: 610px; }
.hero-badge {
    background: rgba(0,87,216,0.07);
    border-color: rgba(0,87,216,0.18);
    color: var(--accent);
    border-radius: 4px;
    letter-spacing: 2.5px;
    margin-bottom: 32px;
    box-shadow: 0 12px 36px rgba(0,87,216,0.07);
}
.hero-badge-dot {
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(0,87,216,0.1);
}
.hero h1 {
    color: var(--text-bright);
    font-size: clamp(3rem, 5.4vw, 5.7rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 780px;
}
.hero h1 .accent {
    background: linear-gradient(105deg, #0057d8, #0a1b33 42%, #0057d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}
.hero-desc {
    color: #334155;
    font-size: 1.12rem;
    line-height: 1.9;
    max-width: 590px;
    margin-bottom: 42px;
}
.btn-primary {
    background: linear-gradient(145deg, #0057d8, #003f9f);
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 16px 36px rgba(0,87,216,0.22);
}
.btn-primary::after {
    background: linear-gradient(145deg, #1774ff, #0057d8);
    border-radius: 4px;
}
.btn-primary:hover { box-shadow: 0 22px 46px rgba(0,87,216,0.25); }

.hero-stats {
    gap: 0;
    margin-top: 58px;
    padding-top: 0;
    border-top: 1px solid rgba(8,17,31,0.08);
    border-bottom: 1px solid rgba(8,17,31,0.08);
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(16px);
}
.hero-stats > div {
    min-width: 150px;
    padding: 22px 30px 20px 0;
    margin-right: 30px;
    border-right: 1px solid rgba(8,17,31,0.08);
}
.hero-stats > div:last-child {
    border-right: 0;
    margin-right: 0;
}
.hero-stat-num { font-size: 2.35rem; }
.hero-stat-num .gold,
.hero-stat-num .blue,
.stats-num,
.about-num-item h3,
.spec-card h5 {
    color: var(--accent);
    background: none;
    -webkit-text-fill-color: currentColor;
}
.hero-stat-label,
.stats-label,
.about-num-item p {
    color: #64748b;
    letter-spacing: 1.7px;
}
.hero-visual { justify-content: flex-end; }
.hero-img-wrap {
    max-width: 700px;
    background: rgba(255,255,255,0.52);
    border: 1px solid rgba(8,17,31,0.08);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 34px 90px rgba(8,17,31,0.14);
}
.hero-img-wrap img {
    border-radius: 6px;
    filter: saturate(1.04) contrast(1.03);
}
.hero-img-glow {
    background: radial-gradient(ellipse, rgba(0,87,216,0.18) 0%, transparent 72%);
}

section { padding: 128px 0; }
section::before { background: linear-gradient(90deg, transparent, rgba(8,17,31,0.10), transparent); }

.adv-bar {
    background: #ffffff;
    padding: 84px 0;
    border-color: rgba(8,17,31,0.08);
}
.adv-grid {
    gap: 16px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.adv-item,
.spec-card,
.ind-card,
.cta-form {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(8,17,31,0.09);
    border-radius: 6px;
    box-shadow: 0 18px 48px rgba(8,17,31,0.07);
}
.adv-item {
    padding: 42px 30px;
    text-align: left;
}
.adv-item::before,
.ind-card::before { background: linear-gradient(180deg, rgba(0,87,216,0.08), transparent 72%); }
.adv-item::after,
.ind-card::after { border-radius: 6px; }
.adv-item:hover,
.ind-card:hover,
.spec-card:hover {
    background: #ffffff;
    border-color: rgba(0,87,216,0.18);
    box-shadow: 0 26px 64px rgba(8,17,31,0.11);
    transform: translateY(-5px);
}
.adv-icon,
.ind-icon {
    margin-left: 0;
    background: rgba(0,87,216,0.07);
    border-color: rgba(0,87,216,0.14);
    border-radius: 4px;
    color: var(--accent);
    box-shadow: none;
}
.adv-item h4,
.ind-card h4 { color: var(--text-bright); }

.about { background: linear-gradient(180deg, #f5f7fb, #ffffff); }
.about-highlight {
    background: #ffffff;
    border-color: rgba(0,87,216,0.12);
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(8,17,31,0.06);
}
.about-highlight::before { background: var(--accent); }
.about-highlight h4 { color: var(--accent); }
.about-img-card {
    background: #ffffff;
    border-color: rgba(8,17,31,0.08);
    border-radius: 8px;
    box-shadow: 0 28px 72px rgba(8,17,31,0.12);
}
.about-img-card img {
    filter: saturate(1.02) contrast(1.02);
    background: #ffffff;
}
.about-img-overlay {
    background: linear-gradient(140deg, rgba(0,87,216,0.08), rgba(255,255,255,0));
    border-color: rgba(0,87,216,0.1);
    border-radius: 8px;
}
.about-badge {
    background: rgba(255,255,255,0.92);
    border-color: rgba(0,87,216,0.18);
    border-radius: 6px;
}
.about-badge-num { color: var(--accent); }

.product {
    background: linear-gradient(135deg, #071120 0%, #0d223c 58%, #071120 100%);
    color: #eaf2ff;
}
.product .section-title,
.product-info h3 { color: #ffffff; }
.product-info .desc { color: #bdc9d8; }
.product-visual {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,244,250,0.95));
    border-color: rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 42px;
}
.product-visual::before { background: linear-gradient(90deg, transparent, rgba(0,87,216,0.36), transparent); }
.product-visual::after {
    background:
        linear-gradient(90deg, rgba(0,87,216,0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0,87,216,0.07) 1px, transparent 1px);
    background-size: 42px 42px;
}
.product-visual img {
    filter: saturate(1.04) contrast(1.02) drop-shadow(0 18px 34px rgba(8,17,31,0.14));
}
.product-tag {
    background: rgba(23,116,255,0.12);
    border-color: rgba(23,116,255,0.22);
    color: #8bbcff;
    border-radius: 4px;
}
.spec-card {
    background: rgba(255,255,255,0.075);
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
}
.spec-card h5 { color: #7bb5ff; }
.spec-card p { color: #aab8c9; }

.industries { background: #ffffff; }
.ind-card { padding: 48px; }
.ind-features li {
    background: rgba(0,87,216,0.05);
    border: 1px solid rgba(0,87,216,0.08);
    border-radius: 4px;
}
.ind-features li::before { color: var(--accent); }

.stats-band { background: linear-gradient(90deg, #071120, #0d223c); }
.stats-item { border-color: rgba(255,255,255,0.13); }
.stats-item:hover { background: rgba(255,255,255,0.05); }
.stats-num { color: #7bb5ff; }
.stats-label { color: #a8b4c3; }

#cases { background: #f5f7fb; }
.gallery-grid { gap: 18px; }
.gallery-item {
    border-radius: 6px;
    border: 1px solid rgba(8,17,31,0.08);
    box-shadow: 0 18px 46px rgba(8,17,31,0.08);
    background: #ffffff;
}
.gallery-item::before { background: linear-gradient(180deg, transparent 50%, rgba(7,17,32,0.28)); }
.gallery-item::after {
    background: linear-gradient(180deg, rgba(0,87,216,0.08), rgba(7,17,32,0.18));
    color: #ffffff;
    border-radius: 4px;
}
.gallery-item img { filter: saturate(1.02) contrast(1.04) brightness(1.04); }

.gallery-item:hover::before { opacity: 0.22; }
.gallery-item:hover::after { opacity: 0.16; }

#contact.cta-section {
    background:
        linear-gradient(110deg, rgba(7,17,32,0.94), rgba(9,35,67,0.92)),
        url("../images/baomotech-head-cover.png") right center / auto 110% no-repeat;
}
.cta-section h2 { color: #ffffff; }
.cta-section > .container > p,
.cta-phone { color: #c4d1e1; }
.cta-form {
    background: rgba(255,255,255,0.94);
    border-radius: 8px;
    max-width: 820px;
}
.cta-form::before { background: linear-gradient(90deg, transparent, rgba(0,87,216,0.45), transparent); }
.cta-form label { color: #1f2d3d; }
.cta-form input,
.cta-form select,
.cta-form textarea {
    background: #f7f9fc;
    color: #132033;
    border-color: rgba(8,17,31,0.12);
    border-radius: 4px;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0,87,216,0.10);
}

footer { background: #071120; }
.footer-brand p,
.footer-col a,
.footer-contact-value,
.footer-bottom { color: #a9b5c5; }
.footer-col h5,
footer .nav-brand-name { color: #ffffff; }
.footer-contact-icon,
.back-to-top {
    background: rgba(23,116,255,0.14);
    border-color: rgba(23,116,255,0.18);
    color: #8bbcff;
    border-radius: 4px;
}
.back-to-top:hover {
    background: var(--accent);
    color: #ffffff;
}

@media (max-width: 1100px) {
    .hero {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.97), rgba(244,248,252,0.92)),
            url("../images/baomotech-dc3228.png") center bottom 80px / 92% auto no-repeat;
        min-height: 92vh;
        padding-bottom: 260px;
    }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
}

@media (max-width: 900px) {
    .navbar,
    .navbar.scrolled { background: rgba(255,255,255,0.97); }
    .nav-links {
        background: rgba(255,255,255,0.98);
        border-color: rgba(8,17,31,0.08);
        box-shadow: 0 18px 42px rgba(8,17,31,0.12);
    }
    .hero h1 { font-size: clamp(2.75rem, 12vw, 4.4rem); }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-stats > div {
        min-width: 0;
        margin-right: 0;
        padding-right: 18px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-bottom: 210px;
        background-size: 118% auto;
        background-position: center bottom 78px;
    }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stats > div {
        border-right: 0;
        border-bottom: 1px solid rgba(8,17,31,0.08);
        padding: 18px 0;
    }
    .hero-stats > div:last-child { border-bottom: 0; }
.adv-item,
.ind-card { padding: 34px 24px; }
}

/* ---------- Advantage icon image system ---------- */
.adv-icon {
    width: 118px;
    height: 118px;
    margin: 0 0 26px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,87,216,0.12);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(8,17,31,0.08);
}

.adv-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.adv-item:hover .adv-icon {
    transform: translateY(-3px);
    border-color: rgba(0,87,216,0.22);
    box-shadow: 0 24px 58px rgba(0,87,216,0.14);
}

@media (max-width: 900px) {
    .adv-icon {
        width: 104px;
        height: 104px;
    }
}

@media (max-width: 640px) {
    .adv-icon {
        width: 96px;
        height: 96px;
        margin-bottom: 22px;
    }
}

/* ---------- Hero and language switcher polish after formal imagery ---------- */
.lang-switcher {
    top: 86px;
    right: 28px;
    z-index: 990;
}

.hero {
    min-height: 92vh;
    background:
        radial-gradient(circle at 78% 18%, rgba(0,87,216,0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.hero::after {
    display: none;
}

.hero-inner {
    grid-template-columns: minmax(520px, 0.82fr) minmax(640px, 1.18fr);
    gap: clamp(36px, 4vw, 72px);
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(3rem, 4.1vw, 4.45rem);
    line-height: 1.08;
    letter-spacing: 0;
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero h1 .accent {
    display: inline;
}

.hero-desc {
    max-width: 650px;
}

.hero-visual {
    min-width: 0;
}

.hero-img-wrap {
    width: min(100%, 900px);
    max-width: 900px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 28px 60px rgba(8,17,31,0.13)) saturate(1.02) contrast(1.02);
}

@media (max-width: 1100px) {
    .hero {
        background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
        min-height: auto;
        padding-bottom: 84px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
    }

    .hero-img-wrap {
        max-width: 860px;
    }

    .hero h1 {
        max-width: 820px;
        font-size: clamp(2.55rem, 7vw, 4rem);
    }
}

@media (max-width: 900px) {
    .lang-switcher {
        top: auto;
        right: 16px;
        bottom: 18px;
        z-index: 9999;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 9.5vw, 3.4rem);
        line-height: 1.12;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-bottom: 70px;
        background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
    }

    .hero h1 {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }
}

/* ---------- Header readability tuning ---------- */
.nav-links a {
    font-size: 1.08rem;
    font-weight: 500;
}

.nav-cta {
    min-width: 160px;
    min-height: 64px;
    padding: 0 34px;
    font-size: 1.06rem;
    font-weight: 700;
}

.lang-switcher {
    min-height: 62px;
    padding: 8px;
}

.lang-btn {
    min-width: 58px;
    height: 46px;
    padding: 0 16px;
    font-size: 0.98rem;
    font-weight: 700;
}

.product-tag {
    padding: 13px 28px;
    font-size: 0.92rem;
    line-height: 1.2;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.section-label {
    font-size: 1.05rem;
    line-height: 1.35;
    letter-spacing: 0.18em;
    font-weight: 800;
    margin-bottom: 22px;
}

.section-label::before {
    width: 64px;
    height: 3px;
    margin-right: 22px;
}

/* ---------- Industry image background cards ---------- */
.ind-card.industry-furniture,
.ind-card.industry-automotive {
    min-height: 560px;
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 26px 70px rgba(8,17,31,0.14);
}

.ind-card.industry-furniture {
    background-image: url("../images/industry-furniture.jpg");
}

.ind-card.industry-automotive {
    background-image: url("../images/industry-automotive.jpg");
}

.ind-card.industry-furniture::before,
.ind-card.industry-automotive::before {
    content: "";
    position: absolute;
    inset: 0;
    height: auto;
    opacity: 1;
    z-index: -2;
    background: inherit;
    transform: scale(1.01);
    transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.ind-card.industry-furniture::after,
.ind-card.industry-automotive::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 0;
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(6,17,34,0.08) 0%, rgba(6,17,34,0.38) 42%, rgba(6,17,34,0.88) 100%),
        linear-gradient(90deg, rgba(6,17,34,0.72) 0%, rgba(6,17,34,0.30) 58%, rgba(6,17,34,0.16) 100%);
}

.ind-card.industry-furniture:hover,
.ind-card.industry-automotive:hover {
    border-color: rgba(255,255,255,0.34);
    box-shadow: 0 34px 82px rgba(8,17,31,0.2);
}

.ind-card.industry-furniture:hover::before,
.ind-card.industry-automotive:hover::before {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.03);
}

.ind-card.industry-furniture h4,
.ind-card.industry-automotive h4 {
    color: #ffffff;
    font-size: clamp(1.7rem, 2.2vw, 2.35rem);
    text-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.ind-card.industry-furniture > p,
.ind-card.industry-automotive > p {
    color: rgba(235,242,252,0.9);
    max-width: 620px;
    font-size: 1rem;
}

.ind-card.industry-furniture .ind-features,
.ind-card.industry-automotive .ind-features {
    position: relative;
    z-index: 1;
}

.ind-card.industry-furniture .ind-features li,
.ind-card.industry-automotive .ind-features li {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
}

.ind-card.industry-furniture .ind-features li::before,
.ind-card.industry-automotive .ind-features li::before {
    background: #8bbcff;
    opacity: 0.95;
}

@media (max-width: 900px) {
    .ind-card.industry-furniture,
    .ind-card.industry-automotive {
        min-height: 520px;
        padding: 42px 34px;
    }
}

@media (max-width: 640px) {
    .ind-card.industry-furniture,
    .ind-card.industry-automotive {
        min-height: 560px;
        padding: 34px 24px;
    }

    .ind-card.industry-furniture::after,
    .ind-card.industry-automotive::after {
        background:
            linear-gradient(180deg, rgba(6,17,34,0.12) 0%, rgba(6,17,34,0.52) 38%, rgba(6,17,34,0.92) 100%);
    }
}

/* Final section eyebrow sizing pass */
.section-label {
    font-size: 1.42rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.12em !important;
    font-weight: 900 !important;
}

.section-label::before {
    width: 84px !important;
    height: 4px !important;
    margin-right: 26px !important;
}

/* Final contact form readability pass */
.cta-form label {
    font-size: 1.12rem !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    min-height: 72px !important;
    padding: 20px 26px !important;
    font-size: 1.18rem !important;
    line-height: 1.55 !important;
}

.cta-form textarea {
    min-height: 180px !important;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    font-size: 1.18rem !important;
    color: #94a3b8 !important;
    opacity: 0.9 !important;
}

.cta-form select,
.cta-form select option {
    font-size: 1.18rem !important;
}

/* Final cases/footer readability pass */
#cases .section-title {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    background: none !important;
    text-shadow: none !important;
}

#cases .section-sub {
    color: #334155 !important;
}

.footer-brand p {
    font-size: 1.15rem !important;
    line-height: 1.85 !important;
    color: #cbd5e1 !important;
}

.footer-col h5 {
    font-size: 1.22rem !important;
    line-height: 1.4 !important;
    margin-bottom: 34px !important;
}

.footer-col a,
.footer-contact-label,
.footer-contact-value,
.footer-bottom {
    font-size: 1.08rem !important;
    line-height: 1.65 !important;
}

.footer-contact-value {
    color: #dbe5f2 !important;
}

.footer-contact-label {
    color: #a8b4c3 !important;
}

/* Final global layout safety and contact polish */
.hero,
.hero-inner,
.hero-content,
.hero-visual {
    min-width: 0 !important;
}

.hero {
    overflow: hidden !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.hero-visual {
    position: relative !important;
    z-index: 1 !important;
}

.hero h1,
.hero-desc {
    overflow-wrap: anywhere !important;
}

.hero-img-wrap {
    width: min(100%, 900px) !important;
    max-width: 900px !important;
}

.hero-img-wrap img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 1280px) {
    .hero-inner {
        grid-template-columns: 1fr !important;
    }

    .hero-visual {
        justify-content: center !important;
        margin-top: 28px !important;
    }

    .hero h1,
    .hero-desc {
        max-width: 980px !important;
    }
}

#contact h2 {
    font-size: clamp(2.6rem, 4vw, 4.4rem) !important;
    line-height: 1.12 !important;
}

#contact > .container > p,
.cta-phone {
    font-size: 1.28rem !important;
    line-height: 1.75 !important;
}

#contact .btn-primary {
    min-height: 72px !important;
    font-size: 1.18rem !important;
}

footer .nav-brand-name {
    font-size: 1.35rem !important;
}

footer .nav-brand-sub {
    font-size: 0.86rem !important;
    letter-spacing: 0.28em !important;
}

.footer-contact {
    gap: 24px !important;
}

.footer-contact-icon {
    width: 64px !important;
    height: 64px !important;
    font-size: 1.32rem !important;
}

.footer-col a,
.footer-contact-label,
.footer-contact-value,
.footer-bottom {
    font-size: 1.18rem !important;
}

.client-logo-cloud {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.08;
}

.client-logo-cloud img {
    position: absolute;
    max-width: 180px;
    height: auto;
    filter: grayscale(1) contrast(1.1);
}

#cases > .container {
    position: relative;
    z-index: 1;
}

/* Final universal overlap guard */
img,
video {
    max-width: 100% !important;
}
.hero h1,
.hero-desc,
.section-title,
.section-sub,
.product-info h3,
.product-info .desc,
.industry-card h4,
.industry-card p,
.case-card h4,
.case-card p,
.cta-form label,
.footer-brand p,
.footer-col a,
.footer-contact-value,
.btn-primary,
.btn-ghost,
.nav-links a,
.nav-cta,
.lang-btn {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}
.case-card,
.gallery-item,
.industry-card,
.product-detail,
.cta-form,
.footer-col {
    min-width: 0 !important;
}
@media (max-width: 980px) {
    .cases-grid,
    .gallery-grid,
    .industries-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .case-card img,
    .gallery-item img,
    .industry-card img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
}


/* Final DIN Pro font pass */
body,
button,
input,
select,
textarea {
    font-family: "DIN Pro", "DINPro", "DIN 2014", "DIN Alternate", "Bahnschrift", "Arial Narrow", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
}


/* Final screenshot issue fixes */
.hero h1 {
    max-width: 860px !important;
    font-size: clamp(3.15rem, 3.65vw, 4.05rem) !important;
    line-height: 1.12 !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
}
.hero h1 .accent {
    display: block !important;
}
.adv-item h4 {
    font-size: 1.32rem !important;
    line-height: 1.35 !important;
}
.adv-item p {
    font-size: 1.08rem !important;
    line-height: 1.75 !important;
}
.about-num-item p,
.stats-label,
.about-badge-label {
    font-size: 1rem !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: normal !important;
}
.about-badge {
    min-width: 168px !important;
}
.footer-contact-value,
.footer-bottom a {
    font-size: 1.22rem !important;
    letter-spacing: 0 !important;
}
@media (max-width: 1280px) {
    .hero h1 {
        max-width: 900px !important;
        font-size: clamp(2.75rem, 5.2vw, 3.85rem) !important;
    }
}
@media (max-width: 760px) {
    .hero h1 {
        font-size: clamp(2.25rem, 10vw, 3rem) !important;
    }
}


/* Final footer no-break pass */
.footer-contact-value {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}
.footer-contact-value[href],
.footer-contact-value a {
    white-space: nowrap !important;
}
.footer-contact .footer-contact-value {
    max-width: none !important;
}
.footer-col:last-child {
    min-width: 360px !important;
}
@media (max-width: 900px) {
    .footer-col:last-child { min-width: 0 !important; }
    .footer-contact-value { white-space: normal !important; }
}


/* Final native language switcher pass */
.lang-switcher {
    width: auto !important;
    max-width: min(92vw, 920px) !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}
.lang-switcher::-webkit-scrollbar {
    display: none !important;
}
.lang-btn {
    min-width: 88px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
}
@media (max-width: 760px) {
    .lang-switcher {
        left: 16px !important;
        right: 16px !important;
        max-width: calc(100vw - 32px) !important;
        justify-content: flex-start !important;
    }
    .lang-btn {
        min-width: 78px !important;
        font-size: 0.92rem !important;
    }
}

/* Keep customer case photos faithful to the original assets. */
.gallery-item::before {
    background: linear-gradient(180deg, rgba(7, 17, 32, 0) 62%, rgba(7, 17, 32, 0.22) 100%) !important;
    opacity: 1 !important;
}

.gallery-item::after {
    display: none !important;
}

.gallery-item img {
    filter: none !important;
}

.gallery-item:hover::before {
    opacity: 0.55 !important;
}
