html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #111827;
    background: #ffffff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 14%, rgba(20, 122, 214, 0.08), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(14, 165, 233, 0.07), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%);
    opacity: 0.8;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.home-logo-area {
    gap: 12px;
}

.logo-mark {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 8px 20px rgba(8, 17, 31, 0.08);
    flex-shrink: 0;
}

.footer-logo-mark {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
}

.home-cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.footer-col-wide {
    grid-column: span 1.5;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand-text {
    color: var(--clean-white);
}

.footer-brand-text span {
    color: var(--ny-bright-blue);
}

.footer-cta-btn {
    width: 100%;
    margin-top: 20px;
}

.form-submit-btn {
    width: 100%;
    min-height: 50px;
}

.section-top-gap {
    margin-top: 40px;
}

.section-white {
    background-color: var(--clean-white);
}

.section-light-blue {
    background-color: var(--light-blue-bg);
}

.btn-compact {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.media-raised {
    position: relative;
    z-index: 2;
}

.transition-smooth {
    transition: var(--transition-smooth);
}

.motion-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--motion-delay, 0ms);
    will-change: opacity, transform;
}

.motion-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.motion-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    transform-origin: center;
}

.motion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(8, 17, 31, 0.12);
}

body:not(.js-motion-ready) .network-card,
body:not(.js-motion-ready) .benefit-card,
body:not(.js-motion-ready) .flow-step,
body:not(.js-motion-ready) .regional-panel,
body:not(.js-motion-ready) .regional-content-item,
body:not(.js-motion-ready) .logistics-card,
body:not(.js-motion-ready) .floating-collage-card,
body:not(.js-motion-ready) .manufacture-card,
body:not(.js-motion-ready) .factory-dark-card,
body:not(.js-motion-ready) .qc-step,
body:not(.js-motion-ready) .cert-document-card,
body:not(.js-motion-ready) .warehouse-list-card,
body:not(.js-motion-ready) .customer-card,
body:not(.js-motion-ready) .showroom-card,
body:not(.js-motion-ready) .quick-contact-card,
body:not(.js-motion-ready) .inquiry-form-card,
body:not(.js-motion-ready) .guide-panel-card,
body:not(.js-motion-ready) .info-card-item,
body:not(.js-motion-ready) .purpose-card,
body:not(.js-motion-ready) .process-step,
body:not(.js-motion-ready) .warehouse-dark-card,
body:not(.js-motion-ready) .address-panel,
body:not(.js-motion-ready) .map-frame-holder,
body:not(.js-motion-ready) .faq-card,
body:not(.js-motion-ready) .solution-card,
body:not(.js-motion-ready) .buyer-card,
body:not(.js-motion-ready) .advantage-card,
body:not(.js-motion-ready) .support-card,
body:not(.js-motion-ready) .oem-example-card,
body:not(.js-motion-ready) .config-panel,
body:not(.js-motion-ready) .buyer-solution-card,
body:not(.js-motion-ready) .market-scenario-card,
body:not(.js-motion-ready) .factory-support-card,
body:not(.js-motion-ready) .popular-guide-card,
body:not(.js-motion-ready) .product-cta-card,
body:not(.js-motion-ready) .update-card {
    opacity: 1 !important;
    transform: none !important;
}

body:not(.js-motion-ready) .active-region-profile.active {
    opacity: 1 !important;
    transform: none !important;
}

.motion-float {
    animation: nuoyuFloat 6.5s ease-in-out infinite;
}

.motion-tilt {
    transform-style: preserve-3d;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.motion-button {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.motion-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.3) 50%, transparent 80%);
    transform: translateX(-130%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.motion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 122, 214, 0.16);
    filter: saturate(1.03);
}

.motion-button:hover::after {
    transform: translateX(130%);
}

.motion-button:active {
    transform: translateY(0);
}

.text-muted-note {
    font-size: 0.85rem;
    color: var(--silver-gray);
}

.text-muted-note-strong {
    color: var(--silver-gray);
}

.security-note-box {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 24px;
}

.info-note {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-bottom: 20px;
}

.dark-navy-title {
    color: var(--dark-navy);
}

.border-top-highlight {
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
    font-weight: 600;
    color: var(--dark-navy);
}

.full-frame-embed {
    width: 100%;
    height: 100%;
    border: 0;
    position: relative;
    z-index: 2;
}

.product-desc-text {
    font-size: 0.92rem;
    color: var(--muted-text);
    margin-bottom: 14px;
}

.cta-gap-md {
    margin-top: 30px;
}

.cta-gap-lg {
    margin-top: 40px;
}

.breadcrumb-chevron {
    font-size: 0.6rem;
}

.text-center-top-gap {
    margin-top: 40px;
}

.info-note-center {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-top: 30px;
    text-align: center;
}

.security-note-box-tight {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.full-width-btn {
    width: 100%;
}

.region-card-span-two {
    grid-column: span 2;
}

.flow-reset {
    border: none;
    padding: 0;
}

.flow-line-offset {
    top: 20px;
}

.flow-circle-light {
    background: var(--clean-white);
    color: var(--dark-navy);
}

.label-top-gap {
    display: inline-block;
    margin-top: 8px;
}

.warehouse-note-muted {
    color: var(--silver-gray);
    text-align: center;
}

.warehouse-note-compact {
    color: var(--silver-gray);
    font-size: 0.8rem;
    margin: 0;
}

.section-white-pb40 {
    background-color: var(--clean-white);
    padding-bottom: 40px;
}

@keyframes nuoyuFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

.site-shell {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.content-shell {
    padding: 48px 0 80px;
}

.page-hero {
    margin-bottom: 32px;
}

.page-hero h1,
.entry-title {
    margin: 0 0 16px;
    color: #08111f;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
}

.entry-meta {
    margin-bottom: 24px;
    color: #667085;
    font-size: 0.95rem;
}

.entry-card {
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(8, 17, 31, 0.06);
}

.entry-content {
    color: #344054;
    font-size: 1rem;
    line-height: 1.8;
}

.entry-content > :first-child {
    margin-top: 0;
}

.entry-content a {
    color: #147ad6;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #08111f;
    line-height: 1.2;
}

.empty-state {
    padding: 72px 0;
    text-align: center;
}

.empty-state p {
    color: #667085;
}

@media (max-width: 767px) {
    body::before {
        opacity: 0.55;
    }

    .site-shell {
        width: min(100% - 32px, 1120px);
    }

    .home-cta-button {
        padding: 9px 16px;
        font-size: 0.8rem;
    }

    .footer-col-wide {
        grid-column: span 1;
    }

    .footer-brand {
        margin-bottom: 18px;
    }

    .form-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .inquiry-form-card,
    .ask-form-card,
    .helper-card {
        padding: 24px 18px;
    }

    .inquiry-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .inquiry-ctas .btn,
    .inquiry-ctas button {
        width: 100%;
        justify-content: center;
    }

    .content-shell {
        padding: 32px 0 56px;
    }

    .entry-card {
        padding: 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .motion-reveal,
    .motion-card,
    .motion-float,
    .motion-tilt,
    .motion-button,
    .motion-button::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
