   /* ================================================================
           1. CSS VARIABLES
           ================================================================ */
        :root {
            --primary: #F57A17;
            --primary-dark: #E06A0D;
            --primary-light: #F89D1F;
            --dark: #141414;
            --dark-light: #1E1C1C;
            --text: #222222;
            --text-muted: #646A7A;
            --bg-light: #F7F9FC;
            --white: #FFFFFF;
            --gray-light: #F1F2F6;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 12px 48px rgba(245, 122, 23, 0.15);
            --radius: 16px;
            --radius-lg: 24px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-primary: 'Inter', sans-serif;
            --font-secondary: 'Poppins', sans-serif;
            --container: 1222px;
            /* 导航栏高度 */
            --header-height: 76px;
        }

        /* ================================================================
           2. RESET & BASE
           ================================================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            /* 关键：padding-top 等于导航栏高度，确保内容不被遮挡 */
            padding-top: var(--header-height);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        a:hover {
            color: #f0f0f0;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ================================================================
           3. HEADER - 始终深色背景
           ================================================================ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 12px 0;
            transition: all var(--transition);
            background: rgba(20, 20, 20, 0.92);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            /* 固定高度 */
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .site-header.scrolled {
            background: rgba(20, 20, 20, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
            padding: 10px 0;
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        /* ===== Logo ===== */
        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            transition: color var(--transition);
        }

        .logo .icon {
            background: var(--primary);
            color: var(--white);
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

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

        .logo .brand-highlight {
            color: var(--primary);
        }

        /* ===== Navigation ===== */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-menu a {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.92rem;
            transition: all var(--transition);
            position: relative;
            padding: 4px 0;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-light);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2.5px;
            background: var(--primary);
            transition: all var(--transition);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 60%;
        }

        /* ===== Right Actions ===== */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .lang-switch {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .lang-switch a {
            color: rgba(255, 255, 255, 0.7);
            padding: 0 3px;
            transition: color var(--transition);
        }

        .lang-switch a.active,
        .lang-switch a:hover {
            color: var(--white);
        }

        .lang-switch .divider {
            color: rgba(255, 255, 255, 0.3);
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: var(--white);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 10px 24px;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            line-height: 1.4;
        }

        .header-cta:hover {
            background: var(--primary-dark);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(245, 122, 23, 0.35);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--white);
            border-radius: 2px;
            transition: all var(--transition);
        }

        /* ================================================================
           4. PAGE BANNER - 紧贴导航栏
           ================================================================ */
        .page-banner {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--dark);
            overflow: hidden;
            /* 关键：移除 margin-top，紧贴导航栏 */
            margin-top: 0;
            /* 确保内容在导航栏下方开始 */
            padding-top: 0;
        }

        .page-banner .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/img/03081.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
       .page-banner .banner-bg-01 {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background-image: url('/img/career-banner.jpg');
           background-size: cover;
           background-position: center;
           background-attachment: fixed;
       }

       .page-banner .banner-bg-02 {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background-image: url('/img/projects-at-oriano-updated.jpg');
           background-size: cover;
           background-position: center;
           background-attachment: fixed;
       }

       .page-banner .banner-bg-03 {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background-image: url('/img/contact-banner-oriano-updated.jpg');
           background-size: cover;
           background-position: center;
           background-attachment: fixed;
       }
        .page-banner .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(20, 20, 20, 0.80) 0%,
                    rgba(245, 122, 23, 0.35) 100%);
            z-index: 1;
        }

        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            padding: 40px 20px;
            max-width: 820px;
            width: 100%;
        }

        .page-banner .banner-tag {
            display: inline-block;
            background: rgba(245, 122, 23, 0.2);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border: 1px solid rgba(245, 122, 23, 0.3);
            color: var(--primary-light);
            font-weight: 600;
            font-size: 0.8rem;
            padding: 6px 20px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .page-banner .banner-title {
            font-family: var(--font-secondary);
            font-size: 3.2rem;
            font-weight: 600;
            line-height: 1.15;
            margin-bottom: 16px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .page-banner .banner-title .highlight {
            color: var(--primary);
        }

        .page-banner .banner-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 620px;
            margin: 0 auto 24px;
            line-height: 1.6;
        }

        .page-banner .banner-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            flex-wrap: wrap;
        }

        .page-banner .banner-breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
            transition: color var(--transition);
        }

        .page-banner .banner-breadcrumb a:hover {
            color: var(--primary-light);
        }

        .page-banner .banner-breadcrumb .separator {
            color: rgba(255, 255, 255, 0.3);
        }

        .page-banner .banner-breadcrumb .current {
            color: var(--white);
            font-weight: 500;
        }

        /* ================================================================
           5. MOBILE NAVIGATION
           ================================================================ */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--dark);
            z-index: 999;
            padding: 80px 24px 40px;
            flex-direction: column;
            gap: 16px;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .mobile-nav.open {
            transform: translateX(0);
            display: flex;
        }

        .mobile-nav a {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-nav a.active {
            color: var(--primary);
        }

        .mobile-nav .lang-mobile {
            margin-top: 16px;
            display: flex;
            gap: 16px;
            color: rgba(255, 255, 255, 0.5);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-nav .lang-mobile a {
            border-bottom: none;
            padding: 0;
            font-size: 0.95rem;
        }

        .mobile-nav .lang-mobile a.active {
            color: var(--primary);
        }

        .mobile-close {
            position: absolute;
            top: 20px;
            right: 24px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            transition: transform var(--transition);
        }

        .mobile-close:hover {
            transform: rotate(90deg);
        }

        .mobile-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--primary);
            color: var(--white);
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 60px;
            margin-top: 12px;
            transition: all var(--transition);
            font-size: 1rem;
        }

        .mobile-cta:hover {
            background: var(--primary-dark);
            color: var(--white);
        }

        /* ================================================================
           6. RESPONSIVE
           ================================================================ */
        @media (max-width: 991px) {
            :root {
                --header-height: 68px;
            }
            .nav-menu {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .nav-actions .lang-switch {
                display: none;
            }
            .site-header {
                height: var(--header-height);
                padding: 8px 0;
            }
            .page-banner {
                min-height: 340px;
            }
            .page-banner .banner-title {
                font-size: 2.4rem;
            }
            .page-banner .banner-subtitle {
                font-size: 1rem;
            }
            .page-banner .banner-bg {
                background-attachment: scroll;
            }
        }

        @media (max-width: 576px) {
            :root {
                --header-height: 60px;
            }
            body {
                padding-top: var(--header-height);
            }
            .logo a {
                font-size: 1.15rem;
            }
            .logo .icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            .header-cta {
                font-size: 0.75rem;
                padding: 6px 14px;
                gap: 4px;
            }
            .header-cta i {
                font-size: 0.7rem;
            }
            .site-header {
                padding: 6px 0;
                height: var(--header-height);
            }
            .site-header.scrolled {
                padding: 6px 0;
            }
            .page-banner {
                min-height: 280px;
            }
            .page-banner .banner-title {
                font-size: 1.8rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.95rem;
            }
            .page-banner .banner-tag {
                font-size: 0.7rem;
                padding: 4px 14px;
            }
        }

        /* ================================================================
           7. FOOTER
           ================================================================ */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.6);
            padding: 60px 0 30px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--white);
        }

        .footer-brand .logo-text .highlight {
            color: var(--primary);
        }

        .footer-brand p {
            margin: 12px 0 16px;
            max-width: 280px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            color: var(--white);
            transition: all var(--transition);
            font-size: 0.9rem;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-2px);
            color: var(--white);
        }

        .footer h5 {
            color: var(--white);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 16px;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-contact li i {
            color: var(--primary);
            width: 18px;
            margin-top: 4px;
            font-size: 0.9rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.4);
            transition: color var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--primary);
        }

        .footer-bottom .footer-legal {
            display: flex;
            gap: 16px;
        }

        @media (max-width: 991px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom .footer-legal {
                justify-content: center;
                flex-wrap: wrap;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        /* ================================================================
           8. SCROLL TO TOP
           ================================================================ */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 4px 20px rgba(245, 122, 23, 0.3);
            transition: all var(--transition);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            z-index: 900;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(245, 122, 23, 0.4);
        }

        /* ================================================================
           9. PAGE CONTENT
           ================================================================ */
        .page-content {
            padding: 0;
            min-height: 40vh;
        }

        @media (max-width: 576px) {
            .page-content {
                padding: 40px 0;
            }
        }

   .elementor-element.elementor-element-5785f17.e-flex.e-con-boxed.e-con.e-parent {
       position: relative;
       padding: 4rem 2rem;
       margin: 3rem auto 0;

       background-image:
           linear-gradient(
               180deg,
               rgba(6, 14, 24, 0.38) 0%,
               rgba(6, 14, 24, 0.52) 100%
           ),
           url('/img/careerr-at-oriano.jpg');

       background-size: cover;
       background-position: center;

       color: #ffffff;
       overflow: hidden;
   }

   .elementor-element.elementor-element-5785f17.e-flex.e-con-boxed.e-con.e-parent::before {
       content: '';
       position: absolute;
       inset: 0;
       background: rgba(16, 24, 38, 0.35);
       pointer-events: none;
   }

   .elementor-element.elementor-element-5785f17.e-flex.e-con-boxed.e-con.e-parent .e-con-inner {
       position: relative;
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 2rem;
   }

   .elementor-element.elementor-element-a83a319 .heading {
       max-width: 720px;
   }

   .elementor-element.elementor-element-a83a319 .heading-primary {
       margin: 0 0 1rem;
       font-size: clamp(2rem, 3vw, 3.2rem);
       line-height: 1.05;
       font-weight: 800;
       color: #ffffff;
   }

   .elementor-element.elementor-element-a83a319 .description p {
       margin: 0;
       color: rgba(255, 255, 255, 0.92);
       font-size: 1rem;
       line-height: 1.8;
       max-width: 42rem;
   }

   .elementor-element.elementor-element-9e56a8c .elementor-button {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 1rem;
       padding: 1rem 1.75rem;
       border-radius: 999px;
       background: #ffffff;
       color: #111111;
       font-weight: 700;
       box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
       text-decoration: none;
   }

   .elementor-element.elementor-element-9e56a8c .elementor-button:hover {
       transform: translateY(-2px);
       box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
   }

   .elementor-element.elementor-element-9e56a8c .elementor-button-icon {
       display: inline-flex;
       width: 44px;
       height: 44px;
       border-radius: 50%;
       align-items: center;
       justify-content: center;
       background: #f89d1f;
   }

   .elementor-element.elementor-element-9e56a8c .elementor-button-icon svg {
       width: 18px;
       height: 18px;
   }

   @media (max-width: 992px) {
       .elementor-element.elementor-element-5785f17.e-flex.e-con-boxed.e-con.e-parent {
           padding: 3rem 1.5rem;
       }
       .elementor-element.elementor-element-5785f17.e-flex.e-con-boxed.e-con.e-parent .e-con-inner {
           flex-direction: column;
           align-items: flex-start;
       }
       .elementor-element.elementor-element-9e56a8c .elementor-button {
           width: 100%;
       }
   }

   @media (max-width: 640px) {
       .elementor-element.elementor-element-5785f17.e-flex.e-con-boxed.e-con.e-parent {
           padding: 2rem 1rem;
       }
       .elementor-element.elementor-element-a83a319 .heading-primary {
           font-size: 2.2rem;
       }
   }

   /************************************************************************************/
   .page-home {
       font-family: 'Inter', sans-serif;
       color: #111111;
       line-height: 1.65;
       padding: 3rem 0 4rem;
   }

   .intro-section {
       padding: 3rem 0 0;
       display: grid;
       gap: 2.5rem;
   }

   .intro-top {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 2rem;
       align-items: start;
   }

   .intro-top-left {
       display: grid;
       gap: 1.5rem;
       max-width: 100%;
   }
   .color
   {
       color:#f89d1f;
   }
   .intro-top-right {
       display: grid;
       gap: 1rem;
   }

   .intro-title {
       display: flex;
       gap: 1rem;
       align-items: baseline;
       font-size: clamp(2.5rem, 3.5vw, 3.6rem);
       font-weight: 800;
       line-height: 1;
       color: #111111;
   }

   .intro-tag {
       color: #f8b400;
   }

   .intro-copy {
       display: grid;
       gap: 1rem;
       max-width: 100%;
   }

   .intro-copy p {
       color: #4a4a4a;
       font-size: 1rem;
       line-height: 1.9;
   }

   .intro-card {
       display: grid;
       grid-template-columns: 1fr 1.05fr;
       gap: 1.5rem;
       background: #ffffff;
       padding: 2rem;
       border-radius: 2rem;
       box-shadow: 0 30px 70px rgba(17, 17, 17, 0.08);
       border: 1px solid rgba(17, 17, 17, 0.06);
   }

   .intro-card-left {
       display: grid;
       gap: 1.5rem;
       justify-content: start;
   }

   .intro-card-left h3 {
       margin: 0;
       font-size: clamp(1rem, 1.5vw, 1.8rem);
       line-height: 1.3;
   }
   /***************************************************************************************/
   /* Elementor-style Learn more button (rounded pill with right circular icon) */
   .elementor-button {
       display: inline-flex;
       align-items: center;
       gap: 1rem;
       padding: 0.9rem 2.25rem;
       border-radius: 999px;
       background: #f89d1f;
       color: #111111;
       font-weight: 700;
       text-decoration: none;
       box-shadow: 0 14px 36px rgba(248,157,31,0.22);
       transition: transform 0.18s ease, box-shadow 0.18s ease;
       border: none;
   }

   .elementor-button i {
       display: inline-grid;
       place-items: center;
       width: 44px;
       height: 44px;
       background: #ffffff;
       color: #f89d1f;
       border-radius: 50%;
       font-size: 1rem;
       box-shadow: 0 8px 18px rgba(17,17,17,0.12);
       margin-left: 0.25rem;
   }

   .elementor-button:hover {
       transform: translateY(-4px);
       box-shadow: 0 28px 60px rgba(248,157,31,0.28);
   }

   /* Make the button slightly smaller on very small screens */
   @media (max-width: 640px) {
       .elementor-button {
           padding: 0.8rem 1.25rem;
       }

       .elementor-button i {
           width: 38px;
           height: 38px;
       }
   }
