
    :root{
      --design-width:1672;
      --scale:1;

      --hero-height:941;
      --products-height:941;
      --projects-height:680;
      --honors-height:720;
      --header-height:114;

      --gold:#dfa249;
      --gold-light:#f5c874;
      --gold-deep:#9a6425;
      --white:#fff;
      --muted:rgba(255,255,255,.76);
      --muted-dark:#606a76;
      --dark:#050a0e;
      --panel:#fff;
      --panel-text:#111827;
    }

    *{
      box-sizing:border-box;
    }

    html{
      width:100%;
      min-width:320px;
      scroll-behavior:smooth;
      background:#050a0e;
    }

    body{
      width:100%;
      min-width:320px;
      margin:0;
      overflow-x:hidden;
      color:#fff;
      background:#050a0e;
      font-family:
        "Microsoft YaHei",
        "PingFang SC",
        "Noto Sans SC",
        Arial,
        sans-serif;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    button{
      color:inherit;
      font:inherit;
    }

    /* =========================================================
       通用等比例缩放舞台
       所有电脑端均基于 1672px 设计宽度缩放，不换列、不重排。
    ========================================================== */
    .scaled-section{
      position:relative;
      width:100%;
      overflow:hidden;
      background:#050a0e;
    }

    .scaled-section[data-height="941"]{
      height:calc(941px * var(--scale));
    }

    .scaled-section[data-height="680"]{
      height:calc(680px * var(--scale));
    }

    .scaled-section[data-height="720"]{
      height:calc(720px * var(--scale));
    }

    .scaled-section[data-height="800"]{
      height:calc(800px * var(--scale));
    }

    .scaled-section[data-height="900"]{
      height:calc(900px * var(--scale));
    }

    .scaled-section[data-height="1080"]{
      height:calc(1080px * var(--scale));
    }

    .stage{
      position:absolute;
      top:0;
      left:0;
      width:1672px;
      overflow:hidden;
      transform:scale(var(--scale));
      transform-origin:top left;
    }

    .stage-941{height:941px;}
    .stage-680{height:680px;}
    .stage-720{height:720px;}
    .stage-800{height:800px;}
    .stage-900{height:900px;}
    .stage-1080{height:1080px;}

    /* =========================================================
       固定顶部导航
    ========================================================== */
    .header-shell{
      position:fixed;
      z-index:1000;
      top:0;
      left:0;
      width:100%;
      height:calc(96px * var(--scale));
      overflow:hidden;
      pointer-events:none;
    }

    .site-header{
      width:1672px;
      height:96px;
      display:flex;
      align-items:center;
      padding:0 50px;
      border-bottom:1px solid rgba(255,255,255,.22);
      background:transparent;
      transform:scale(var(--scale));
      transform-origin:top left;
      pointer-events:auto;
    }

    .site-header.scrolled{
      background:linear-gradient(180deg,rgba(2,8,11,1),rgba(2,8,11,.98));
      box-shadow:0 8px 24px rgba(0,0,0,.35);
    }

    .brand{
      flex:0 0 294px;
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:200px;
      font-size:30px;
      font-weight:800;
      letter-spacing:5px;
      white-space:nowrap;
      text-decoration:none;
      padding-left:0;
    }
     .brand-logo{
      width:auto;
      height:64px;
      object-fit:contain;
      max-width:100%;
      vertical-align:middle;
    }

    .menu-toggle{
      display:none;
    }

    .main-nav{
      flex:1;
      height:100%;
      display:flex;
      justify-content:center;
      align-items:stretch;
      gap:48px;
    }
    /* 中文导航更紧凑，避免超宽挤压变形 */
    html:not([lang="en"]) .main-nav{gap:32px}

    .nav-link{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      white-space:nowrap;
      color:rgba(255,255,255,.92);
      font-size:18px;
      font-weight:700;
      text-shadow:0 2px 12px rgba(0,0,0,.85);
    }

    .nav-link::after{
      content:"";
      position:absolute;
      left:50%;
      bottom:20px;
      width:0;
      height:3px;
      border-radius:3px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
      transform:translateX(-50%);
      transition:width .2s ease;
    }

    .nav-link:hover,
    .nav-link.active{
      color:var(--gold-light);
    }

    .nav-link.active::after{
      width:44px;
    }

    .header-tools{
      flex:0 0 310px;
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:18px;
      white-space:nowrap;
      font-size:16px;
      font-weight:600;
      text-shadow:0 2px 12px rgba(0,0,0,.85);
    }

    .lang-switch-img{
      width:40px;
      height:40px;
      cursor:pointer;
      object-fit:contain;
    }

    /* =========================================================
       第一屏：首页
    ========================================================== */
    .hero-stage{
      isolation:isolate;
      background:
        radial-gradient(circle at 74% 48%,rgba(112,136,148,.18),transparent 29%),
        linear-gradient(110deg,#08141a 0%,#0b151a 47%,#151e23 100%);
    }

    .hero-slider{
      position:absolute;
      inset:0;
      z-index:-5;
      overflow:hidden;
    }
    .hero-slide{
      position:absolute;
      inset:0;
      opacity:0;
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
      transition:opacity .8s ease-in-out;
    }
    .hero-slide.active{
      opacity:1;
    }

    .hero-stage::before{
      content:"";
      position:absolute;
      inset:114px 0 0;
      z-index:-4;
      background:
        linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
      background-size:48px 48px;
      opacity:.33;
    }

    .hero-stage::after{
      content:"";
      position:absolute;
      inset:114px 0 0;
      z-index:-3;
     
    }

    .hero-structure{
      position:absolute;
      inset:114px 0 0;
      z-index:-2;
      opacity:.24;
      pointer-events:none;
    }

    .hero-structure span{
      position:absolute;
      border:1px solid rgba(255,255,255,.055);
      background:
        repeating-linear-gradient(
          90deg,
          rgba(255,255,255,.025) 0 2px,
          transparent 2px 42px
        ),
        linear-gradient(180deg,rgba(255,255,255,.018),transparent);
    }

    .hero-structure span:nth-child(1){
      left:38%;
      top:4%;
      width:19%;
      height:52%;
      transform:skewX(-8deg);
    }

    .hero-structure span:nth-child(2){
      left:57%;
      top:9%;
      width:17%;
      height:58%;
      transform:skewX(6deg);
    }

    .hero-structure span:nth-child(3){
      right:3%;
      top:12%;
      width:24%;
      height:67%;
      transform:skewX(-4deg);
    }

    .hero-copy{
      position:absolute;
      z-index:5;
      top:183px;
      left:114px;
      width:clamp(480px,42vw,760px);
      opacity:0;
      pointer-events:none;
      transition:opacity .6s ease;
    }
    .hero-copy.active{
      opacity:1;
      pointer-events:auto;
    }

    .hero-eyebrow{
      margin:0 0 19px;
      color:var(--gold);
      font-size:23px;
      font-weight:700;
      letter-spacing:4px;
    }

    .hero-title{
      margin:0;
      color:#fff;
      font-size:clamp(42px,5.2vw,78px);
      font-weight:900;
      line-height:1.25;
      letter-spacing:.04em;
      word-break:break-word;
      overflow-wrap:break-word;
      text-shadow:0 8px 24px rgba(0,0,0,.25);
    }

    .hero-desc{
      margin:32px 0 0;
      color:rgba(255,255,255,.92);
      font-size:clamp(16px,1.45vw,22px);
      font-weight:600;
      line-height:1.95;
      letter-spacing:.5px;
      word-break:break-word;
      overflow-wrap:break-word;
    }

    .hero-actions{
      position:absolute;
      z-index:5;
      top:628px;
      left:114px;
      display:flex;
      align-items:center;
      gap:46px;
    }

    .primary-button{
      width:182px;
      height:60px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(255,193,100,.86);
      border-radius:4px;
      color:#201307;
      background:linear-gradient(105deg,#d78c36 0%,#ffd98e 47%,#f1ac53 100%);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.55),
        0 10px 24px rgba(0,0,0,.18);
      font-size:19px;
      font-weight:800;
      letter-spacing:1px;
    }

    .text-button{
      color:rgba(255,255,255,.94);
      font-size:19px;
      font-weight:700;
    }

    .slider-prev{
      position:absolute;
      z-index:10;
      top:422px;
      left:18px;
      width:58px;
      height:58px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:0;
      border-radius:50%;
      color:var(--gold-light);
      background:rgba(31,43,49,.78);
      font-size:42px;
      line-height:1;
      cursor:pointer;
    }
    .slider-next{
      position:absolute;
      z-index:10;
      top:422px;
      right:18px;
      width:58px;
      height:58px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:0;
      border-radius:50%;
      color:var(--gold-light);
      background:rgba(31,43,49,.78);
      font-size:42px;
      line-height:1;
      cursor:pointer;
    }

    .slide-index{
      position:absolute;
      z-index:6;
      left:48px;
      bottom:70px;
      width:75px;
      min-height:193px;
      color:var(--gold-light);
    }

    .slide-number{
      display:flex;
      align-items:baseline;
      gap:5px;
      font-family:Georgia,"Times New Roman",serif;
    }

    .slide-number strong{
      font-size:27px;
      font-weight:500;
    }

    .slide-number span{
      color:rgba(255,255,255,.9);
      font-size:13px;
    }

    .slide-line{
      position:relative;
      width:2px;
      height:154px;
      margin:12px 0 0 8px;
      background:rgba(231,163,86,.43);
    }

    .slide-line::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      width:3px;
      height:39px;
      background:#ffd58a;
    }

    .stats-panel{
      position:relative;
      z-index:8;
      width:100%;
      max-width:1200px;
      margin:0 auto;
      height:116px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      align-items:center;
      padding:16px 12px;
      border:1px solid rgba(218,228,232,.42);
      border-radius:6px;
      background:linear-gradient(90deg,rgba(6,13,17,.88),rgba(17,25,29,.78));
      box-shadow:
        0 16px 30px rgba(0,0,0,.28),
        inset 0 0 25px rgba(255,255,255,.02);
    }

    .stat-item{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      height:76px;
      text-align:center;
    }
    .stat-item > div{
      display:flex;
      align-items:center;
      gap:14px;
    }

    .stat-item:not(:last-child)::after{
      content:"";
      position:absolute;
      top:3px;
      right:0;
      width:1px;
      height:70px;
      background:rgba(255,255,255,.24);
    }

    .stat-left{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      text-align:left;
    }

    .stat-number{
      display:flex;
      align-items:baseline;
      gap:5px;
      color:#efb15c;
      font-family:Georgia,"Times New Roman",serif;
      line-height:1;
    }

    .stat-icon{
      display:block;
      width:48px;
      height:48px;
      object-fit:contain;
      opacity:.85;
      flex-shrink:0;
    }

    .stat-number strong{
      font-size:51px;
      font-weight:500;
    }

    .stat-number small{
      color:#f4c781;
      font-size:27px;
    }

    .stat-label{
      margin-top:8px;
      color:rgba(255,255,255,.94);
      font-size:17px;
    }

    .floating-tools{
      position:fixed;
      z-index:999;
      top:clamp(200px,22vh,280px);
      right:clamp(8px,1.5vw,47px);
      width:clamp(90px,7vw,105px);
      border:1px solid rgba(228,143,56,.95);
      border-radius:13px;
      background:linear-gradient(180deg,rgba(9,17,21,.96),rgba(13,22,27,.93));
      box-shadow:0 12px 34px rgba(0,0,0,.32);
    }

    .tool-link{
      position:relative;
      min-height:118px;
      width:100%;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:12px 8px;
      border:0;
      color:rgba(255,255,255,.94);
      background:transparent;
      font-size:15px;
      font-weight:700;
      font-family:inherit;
      line-height:1.5;
      text-align:center;
      cursor:pointer;
    }
    .tool-icon{
      width:40px;
      height:34px;
      object-fit:contain;
    }

    .tool-tip{
      position:absolute;
      right:calc(100% + 14px);
      top:50%;
      transform:translateY(-50%);
      padding:12px 18px;
      background:rgba(9,17,21,.97);
      color:var(--gold-light);
      font-size:30px;
      font-weight:700;
      line-height:1.4;
      white-space:nowrap;
      border-radius:6px;
      border:1px solid rgba(228,143,56,.45);
      box-shadow:0 4px 20px rgba(0,0,0,.4);
      pointer-events:none;
      z-index:1000;
    }

    .tool-tip img{
      display:block;
      width:170px;
      height:170px;
      object-fit:contain;
      background:#fff;
      padding:8px;
      border-radius:6px;
    }

    .qr-popup{
      position:absolute;
      right:calc(100% + 14px);
      top:50%;
      transform:translateY(-50%);
      background:rgba(9,17,21,.97);
      padding:10px;
      border:1px solid rgba(228,143,56,.45);
      border-radius:6px;
      box-shadow:0 4px 20px rgba(0,0,0,.4);
      z-index:1000;
    }
    .qr-popup img{
      display:block;
      width:170px;
      height:170px;
      object-fit:contain;
      background:#fff;
      padding:8px;
      border-radius:4px;
    }

    /* =========================================================
       留言弹窗
    ========================================================== */
    .inquiry-overlay{
      display:flex;
      align-items:center;
      justify-content:center;
      position:fixed;
      inset:0;
      z-index:9999;
      background:rgba(0,0,0,.72);
      backdrop-filter:blur(4px);
    }
    .inquiry-dialog{
      position:relative;
      width:min(640px,90vw);
      max-height:90vh;
      overflow-y:auto;
      background:linear-gradient(180deg,rgba(10,22,34,.98),rgba(6,13,20,.98));
      border:1px solid rgba(228,143,56,.35);
      border-radius:12px;
      padding:36px 40px;
      box-shadow:0 16px 48px rgba(0,0,0,.5);
    }
    .inquiry-close{
      position:absolute;
      top:12px;
      right:16px;
      background:none;
      border:none;
      color:rgba(255,255,255,.55);
      font-size:28px;
      line-height:1;
      cursor:pointer;
      transition:color .2s;
    }
    .inquiry-close:hover{ color:var(--gold-light); }
    .inquiry-dialog-title{
      font-family:"Montserrat",sans-serif;
      font-size:22px;
      font-weight:700;
      color:var(--gold-light);
      margin:0 0 6px;
    }
    .inquiry-dialog-subtitle{
      font-size:14px;
      color:rgba(255,255,255,.55);
      margin:0 0 24px;
    }
    .inquiry-dialog .cr-form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .inquiry-dialog .cr-field-full{ grid-column:1/-1; }

    .tool-link:not(:last-child)::after{
      content:"";
      position:absolute;
      right:18px;
      bottom:0;
      left:18px;
      height:1px;
      background:rgba(255,255,255,.22);
    }

    /* =========================================================
       第二屏：核心设备
    ========================================================== */
    .products-stage{
      isolation:isolate;
      background:
        radial-gradient(circle at 50% 77%,rgba(222,151,59,.15),transparent 23%),
        linear-gradient(180deg,rgba(8,16,25,.94),rgba(4,9,14,.98));
    }

    .products-stage::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-4;
      background:
        linear-gradient(90deg,rgba(0,0,0,.52),rgba(0,0,0,.13) 22%,rgba(0,0,0,.13) 78%,rgba(0,0,0,.52)),
        linear-gradient(180deg,rgba(2,7,12,.38),rgba(2,7,12,.14) 42%,rgba(2,7,12,.60)),
        linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.016) 1px,transparent 1px);
      background-size:auto,auto,74px 74px,74px 74px;
    }

    .products-stage::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:230px;
      z-index:-3;
      background:
        radial-gradient(ellipse at center,rgba(219,148,55,.12),transparent 48%),
        linear-gradient(180deg,transparent,rgba(0,0,0,.42));
    }

    .product-structure{
      position:absolute;
      inset:0;
      z-index:-2;
      opacity:.25;
      pointer-events:none;
    }

    .product-structure span{
      position:absolute;
      border:1px solid rgba(255,255,255,.055);
      background:
        repeating-linear-gradient(
          90deg,
          rgba(255,255,255,.035) 0 2px,
          transparent 2px 34px
        ),
        linear-gradient(180deg,rgba(255,255,255,.02),transparent);
    }

    .product-structure span:nth-child(1){
      left:-30px;
      top:145px;
      width:420px;
      height:310px;
      transform:skewX(-12deg);
    }

    .product-structure span:nth-child(2){
      left:395px;
      top:30px;
      width:280px;
      height:285px;
      transform:skewX(8deg);
    }

    .product-structure span:nth-child(3){
      right:350px;
      top:48px;
      width:330px;
      height:300px;
      transform:skewX(-7deg);
    }

    .product-structure span:nth-child(4){
      right:-50px;
      top:120px;
      width:440px;
      height:410px;
      transform:skewX(9deg);
    }

    .products-content{
      width:100%;
      height:100%;
      padding:86px 158px 72px;
    }

    .section-heading{
      text-align:center;
    }

    .overline{
      margin:0 0 13px;
      color:var(--gold-light);
      font-size:18px;
      font-weight:500;
      letter-spacing:9px;
      line-height:1;
      text-transform:uppercase;
    }

    .section-title{
      margin:0;
      color:#fff;
      font-size:54px;
      font-weight:900;
      line-height:1.16;
      letter-spacing:4px;
      text-shadow:0 8px 22px rgba(0,0,0,.3);
    }

    .title-line{
      width:72px;
      height:4px;
      margin:17px auto;
      border-radius:4px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
    }

    .section-desc{
      max-width:820px;
      margin:0 auto;
      color:rgba(255,255,255,.82);
      font-size:17px;
      font-weight:500;
      line-height:1.8;
      letter-spacing:.5px;
      text-align:center;
    }

    .product-cards{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:27px;
      width:100%;
      margin-top:38px;
    }

    .product-card{
      overflow:hidden;
      border:1px solid rgba(255,255,255,.82);
      border-radius:7px;
      color:var(--panel-text);
      background:#fff;
      box-shadow:0 15px 34px rgba(0,0,0,.25);
      transition:transform .22s ease,box-shadow .22s ease;
    }

    .product-card:hover{
      transform:translateY(-5px);
      box-shadow:0 22px 44px rgba(0,0,0,.31);
    }

    .product-media{
      width:100%;
      height:273px;
      background:linear-gradient(135deg,#ededee 0%,#f8f8f8 47%,#e5e5e6 100%);
      border-bottom:1px solid rgba(17,24,39,.07);
    }

    .product-body{
      padding:15px 21px 14px;
      background:rgba(255,255,255,.98);
    }

    .product-name{
      margin:0 0 8px;
      overflow:hidden;
      color:#121826;
      font-size:22px;
      font-weight:800;
      line-height:1.35;
      white-space:nowrap;
      text-overflow:ellipsis;
    }

    .product-meta,
    .product-desc{
      margin:0 0 8px;
      overflow:hidden;
      color:#656d77;
      font-size:14px;
      line-height:1.55;
      white-space:nowrap;
      text-overflow:ellipsis;
    }

    .product-desc{
      margin-bottom:0;
      color:#5d6570;
    }

    .product-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-top:12px;
      color:#b8860b;
      font-size:14px;
      font-weight:700;
      transition:color .2s ease;
    }

    .product-link:hover{
      color:#8b6508;
    }

    .products-footer{
      display:flex;
      justify-content:center;
      margin-top:45px;
    }

    .outline-button{
      min-width:280px;
      height:58px;
      padding:0 28px;
      border:1px solid rgba(218,152,63,.95);
      border-radius:5px;
      color:var(--gold-light);
      background:linear-gradient(180deg,rgba(14,23,30,.72),rgba(6,12,18,.94));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.035),
        0 12px 25px rgba(0,0,0,.23);
      font-size:20px;
      font-weight:600;
      letter-spacing:2px;
      cursor:pointer;
    }

    /* =========================================================
       第三屏：工程案例（紧凑版）
    ========================================================== */
    .projects-stage{
      isolation:isolate;
      background:
        radial-gradient(circle at 50% 74%,rgba(216,155,67,.12),transparent 24%),
        linear-gradient(180deg,#07131d 0%,#050a0f 100%);
    }

    .projects-stage::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-4;
      background:
        linear-gradient(90deg,rgba(0,0,0,.4),rgba(0,0,0,.1) 18%,rgba(0,0,0,.1) 82%,rgba(0,0,0,.4)),
        linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
      background-size:auto,68px 68px,68px 68px;
    }

    .projects-stage::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:-3;
      background:linear-gradient(180deg,rgba(2,7,12,.25),rgba(2,7,12,.58));
    }

    .projects-content{
      width:100%;
      height:100%;
      padding:42px 158px 36px;
    }

    .projects-content .overline{
      margin-bottom:8px;
      font-size:15px;
      letter-spacing:7px;
    }

    .projects-content .section-title{
      font-size:45px;
      line-height:1.14;
    }

    .projects-content .title-line{
      width:62px;
      height:3px;
      margin:13px auto;
    }

    .projects-content .section-desc{
      max-width:820px;
      font-size:15px;
      line-height:1.65;
    }

    .project-cards{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
      margin-top:26px;
    }

    .project-card{
      height:333px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.78);
      border-radius:7px;
      background:#fff;
      box-shadow:0 15px 32px rgba(0,0,0,.26);
      transition:transform .2s ease;
    }

    .project-card:hover{
      transform:translateY(-4px);
    }

    .project-media{
      width:100%;
      height:194px;
      background:linear-gradient(135deg,#dfe1e4 0%,#f5f5f6 48%,#dadddf 100%);
      border-bottom:1px solid rgba(17,24,39,.08);
    }

    .project-body{
      height:139px;
      padding:11px 14px 13px;
      color:var(--panel-text);
    }

    .project-tag{
      margin:0 0 7px;
      overflow:hidden;
      color:#98702f;
      font-size:14px;
      font-weight:700;
      line-height:1.4;
      white-space:nowrap;
      text-overflow:ellipsis;
    }

    .project-desc{
      height:46px;
      margin:0 0 8px;
      overflow:hidden;
      color:#5f6873;
      font-size:13px;
      line-height:1.65;
    }

    .card-link{
      color:#98702f;
      font-size:13px;
      font-weight:700;
    }

    .projects-footer{
      display:flex;
      justify-content:center;
      margin-top:20px;
    }

    /* =========================================================
       第四屏：企业荣誉资质（标题上方，证书 4×2）
    ========================================================== */
    .honors-stage{
      isolation:isolate;
      background:
        linear-gradient(180deg,rgba(12,30,46,.98),rgba(7,20,32,.99)),
        radial-gradient(circle at 18% 16%,rgba(216,155,67,.07),transparent 24%);
    }

    .honors-stage::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-3;
      background:
        linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
      background-size:78px 78px;
      opacity:.3;
    }

    .honors-content{
      width:100%;
      height:100%;
      padding:30px 32px 34px;
    }

    .honors-intro{
      position:relative;
      padding-left:24px;
      margin-bottom:18px;
    }

    .honors-intro::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      width:3px;
      height:82px;
      border-radius:999px;
      background:linear-gradient(180deg,var(--gold),var(--gold-light));
    }

    .honors-overline{
      margin:0 0 8px;
      color:var(--gold-light);
      font-size:15px;
      letter-spacing:3px;
      line-height:1.2;
      text-transform:uppercase;
    }

    .honors-title{
      margin:0;
      color:#fff;
      font-size:48px;
      font-weight:900;
      line-height:1.12;
      letter-spacing:3px;
    }

    .honors-line{
      width:72px;
      height:3px;
      margin:13px 0 12px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
    }

    .honors-desc{
      max-width:760px;
      margin:0;
      color:rgba(255,255,255,.75);
      font-size:15px;
      line-height:1.75;
    }

    .honors-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      column-gap:40px;
      row-gap:24px;
      padding:0 12px;
    }

    .cert-card{
      text-align:center;
    }

    .cert-box{
      position:relative;
      width:360px;
      height:340px;
      margin:0 auto;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.88);
      background:linear-gradient(180deg,#f4f4f5 0%,#fff 56%,#ececed 100%);
      box-shadow:
        0 12px 24px rgba(0,0,0,.2),
        0 0 0 6px rgba(255,255,255,.055);
    }

    .cert-box::before{
      content:"";
      position:absolute;
      inset:11px;
      border:1px solid rgba(17,24,39,.12);
      background:linear-gradient(180deg,rgba(7,18,32,.84) 0 21%,#fbfbfc 21% 100%);
    }

    .cert-box.has-img{
      background:transparent;
      border-color:transparent;
      box-shadow:none;
    }
    .cert-box.has-img::before{
      display:none;
    }

    .cert-title{
      margin:10px auto 0;
      max-width:250px;
      color:rgba(255,255,255,.9);
      font-size:14px;
      line-height:1.55;
    }


    /* =========================================================
       第五屏：新闻资讯
    ========================================================== */
    .news-stage{
      isolation:isolate;
      background:
        radial-gradient(circle at 50% 18%,rgba(220,161,74,.06),transparent 17%),
        linear-gradient(180deg,#07131d 0%,#03080d 100%);
    }

    .news-stage::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-4;
      background:
        linear-gradient(90deg,rgba(0,0,0,.42),rgba(0,0,0,.08) 18%,rgba(0,0,0,.08) 82%,rgba(0,0,0,.42)),
        linear-gradient(rgba(255,255,255,.016) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.016) 1px,transparent 1px);
      background-size:auto,76px 76px,76px 76px;
      opacity:.8;
    }

    .news-stage::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:-3;
      background:linear-gradient(180deg,rgba(7,15,22,.18),rgba(3,8,13,.36));
      pointer-events:none;
    }

    .news-blueprint{
      position:absolute;
      inset:0;
      z-index:-2;
      opacity:.2;
      pointer-events:none;
    }

    .news-blueprint span{
      position:absolute;
      border:1px solid rgba(255,255,255,.08);
      background:
        repeating-linear-gradient(
          90deg,
          rgba(255,255,255,.03) 0 2px,
          transparent 2px 26px
        ),
        repeating-linear-gradient(
          180deg,
          rgba(255,255,255,.02) 0 2px,
          transparent 2px 24px
        ),
        linear-gradient(180deg,rgba(255,255,255,.015),transparent);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);
    }

    .news-blueprint span:nth-child(1){
      left:-20px;
      top:185px;
      width:260px;
      height:170px;
      transform:skewX(-14deg);
    }

    .news-blueprint span:nth-child(2){
      left:82px;
      top:125px;
      width:170px;
      height:128px;
      transform:skewX(9deg);
    }

    .news-blueprint span:nth-child(3){
      left:228px;
      top:165px;
      width:150px;
      height:110px;
      transform:skewX(-8deg);
    }

    .news-blueprint span:nth-child(4){
      right:232px;
      top:110px;
      width:160px;
      height:190px;
      transform:skewX(-7deg);
    }

    .news-blueprint span:nth-child(5){
      right:105px;
      top:155px;
      width:130px;
      height:120px;
      transform:skewX(7deg);
    }

    .news-blueprint span:nth-child(6){
      right:-15px;
      top:145px;
      width:245px;
      height:165px;
      transform:skewX(-11deg);
    }

    .news-content{
      position:relative;
      width:100%;
      height:100%;
      padding:50px 66px 56px;
    }

    .news-heading{
      text-align:center;
    }

    .news-overline{
      margin:0 0 12px;
      color:var(--gold-light);
      font-size:20px;
      font-weight:500;
      letter-spacing:8px;
      line-height:1;
      text-transform:uppercase;
    }

    .news-title{
      margin:0;
      color:#fff;
      font-size:84px;
      font-weight:900;
      line-height:1.06;
      letter-spacing:7px;
      text-shadow:0 8px 24px rgba(0,0,0,.24);
    }

    .news-heading-desc{
      max-width:920px;
      margin:22px auto 0;
      color:rgba(255,255,255,.82);
      font-size:17px;
      line-height:1.8;
      letter-spacing:.5px;
    }

    .news-heading-line{
      width:70px;
      height:4px;
      margin:18px auto 0;
      border-radius:999px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
      box-shadow:0 0 14px rgba(220,161,74,.26);
    }

    .news-layout{
      display:grid;
      grid-template-columns:1.28fr .98fr;
      gap:28px;
      align-items:stretch;
      margin-top:32px;
    }

    .news-feature{
      position:relative;
      display:flex;
      flex-direction:column;
      min-width:0;
      min-height:536px;
      overflow:hidden;
      border-radius:8px;
      text-decoration:none;
      color:inherit;
      background:
        linear-gradient(180deg,rgba(6,11,18,.12),rgba(4,8,13,.6)),
        rgba(7,12,17,.9);
      box-shadow:0 16px 38px rgba(0,0,0,.26);
    }

    .news-feature-media{
      position:relative;
      width:100%;
      height:335px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      border-bottom:0;
      background:linear-gradient(135deg,#d9dcdf 0%,#f5f6f7 48%,#d9dcdf 100%);
    }

    .news-feature-media::before{
      content:"";
      position:absolute;
      inset:16px;
      border:1px dashed rgba(17,24,39,.14);
      border-radius:5px;
      background:linear-gradient(135deg,rgba(255,255,255,.55),rgba(255,255,255,.18));
    }

    .news-feature-media::after{
      content:"";
      position:absolute;
      right:0;
      bottom:0;
      left:0;
      height:168px;
      background:linear-gradient(180deg,rgba(4,10,16,0),rgba(4,10,16,.68) 35%,rgba(4,10,16,.92));
      pointer-events:none;
    }

    .news-feature-body{
      position:relative;
      flex:1;
      padding:18px 34px 26px;
      border:1px solid rgba(255,255,255,.04);
      border-top:0;
      background:linear-gradient(180deg,rgba(5,10,16,.96),rgba(4,8,13,.98));
    }

    .news-feature-meta{
      margin:0 0 16px;
      color:var(--gold-light);
      font-size:16px;
      line-height:1.4;
      letter-spacing:.5px;
      white-space:nowrap;
    }

    .news-feature-title{
      margin:0 0 16px;
      color:#fff;
      font-size:30px;
      font-weight:900;
      line-height:1.3;
      letter-spacing:2px;
    }

    .news-feature-desc{
      margin:0 0 22px;
      color:rgba(255,255,255,.72);
      font-size:16px;
      line-height:1.8;
    }

    .news-detail-link{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--gold-light);
      font-size:16px;
      font-weight:700;
    }

    .news-list{
      display:flex;
      flex-direction:column;
      min-width:0;
    }

    .news-list-item{
      display:grid;
      grid-template-columns:210px 1fr;
      gap:22px;
      min-width:0;
      margin-bottom:14px;
      padding:0 0 14px;
      text-decoration:none;
      color:inherit;
      border-bottom:1px solid rgba(255,255,255,.12);
    }

    .news-list-item:last-of-type{
      margin-bottom:0;
      padding-bottom:0;
      border-bottom:0;
    }

    .news-thumb{
      position:relative;
      width:210px;
      height:114px;
      overflow:hidden;
      border-radius:6px;
      background:linear-gradient(135deg,#d9dcdf 0%,#f5f6f7 48%,#d9dcdf 100%);
      box-shadow:0 10px 24px rgba(0,0,0,.18);
    }

    .news-thumb::before{
      content:"";
      position:absolute;
      inset:12px;
      border:1px dashed rgba(17,24,39,.14);
      border-radius:4px;
      background:linear-gradient(135deg,rgba(255,255,255,.55),rgba(255,255,255,.18));
    }

    .news-item-body{
      min-width:0;
      padding-top:6px;
    }

    .news-item-meta{
      margin:0 0 10px;
      overflow:hidden;
      color:rgba(255,255,255,.72);
      font-size:16px;
      line-height:1.45;
      letter-spacing:.3px;
      white-space:nowrap;
      text-overflow:ellipsis;
    }

    .news-item-meta span{
      margin-left:10px;
      color:var(--gold-light);
    }

    .news-item-title{
      margin:0 0 12px;
      overflow:hidden;
      color:#fff;
      font-size:22px;
      font-weight:800;
      line-height:1.4;
      letter-spacing:1px;
      white-space:nowrap;
      text-overflow:ellipsis;
    }

    .news-item-title.highlight{
      color:var(--gold-light);
    }

    .news-item-desc{
      margin:0;
      color:rgba(255,255,255,.68);
      font-size:15px;
      line-height:1.75;
    }

    .news-more{
      display:flex;
      justify-content:flex-end;
      margin-top:28px;
    }

    .news-more-button{
      width:208px;
      height:56px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(220,161,74,.92);
      border-radius:5px;
      color:var(--gold-light);
      background:linear-gradient(180deg,rgba(13,22,31,.72),rgba(7,13,19,.94));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.03),
        0 12px 24px rgba(0,0,0,.22);
      font-size:18px;
      font-weight:700;
      letter-spacing:1px;
      cursor:pointer;
    }

    .news-footer-note{
      position:absolute;
      left:66px;
      bottom:34px;
      display:flex;
      align-items:center;
      gap:20px;
      color:rgba(255,255,255,.4);
      font-size:18px;
      letter-spacing:4px;
      text-transform:uppercase;
    }

    .news-footer-note::after{
      content:"";
      width:96px;
      height:1px;
      background:rgba(220,161,74,.56);
    }


    /* =========================================================
       第六屏：关于我们 + 客户风采
       右侧企业图片固定收窄，PC 端按 1672px 设计宽度等比例缩放
    ========================================================== */
    .scaled-section[data-height="1320"]{
      min-height:calc(1320px * var(--scale));
    }

    .stage-1320{
      min-height:1320px;
    }

    #about.scaled-section[data-height="1320"]{
      min-height:auto;
      overflow:visible;
    }

    #about .stage-1320{
      min-height:auto;
      overflow:visible;
    }

    .about-stories-stage{
      position:relative;
      width:100%;
      transform:none;
      isolation:isolate;
      background:
        radial-gradient(circle at 50% 10%,rgba(217,156,69,.075),transparent 20%),
        linear-gradient(180deg,#07131d 0%,#03070b 100%);
    }

    .about-stories-stage::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-3;
      background:
        linear-gradient(rgba(255,255,255,.014) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.014) 1px,transparent 1px),
        linear-gradient(
          90deg,
          rgba(0,0,0,.36),
          rgba(0,0,0,.04) 18%,
          rgba(0,0,0,.04) 82%,
          rgba(0,0,0,.36)
        );
      background-size:76px 76px,76px 76px,auto;
      opacity:.85;
    }

    .about-stories-stage::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:-2;
      background:
        radial-gradient(circle at 18% 16%,rgba(10,35,54,.48),transparent 24%),
        radial-gradient(circle at 84% 18%,rgba(10,35,54,.4),transparent 20%),
        radial-gradient(circle at 50% 73%,rgba(217,156,69,.05),transparent 22%);
      pointer-events:none;
    }

    .about-design-container{
      width:100%;
      padding-left:clamp(18px, 4vw, 72px);
      padding-right:clamp(18px, 4vw, 72px);
    }

    .about-company-section{
      min-height:545px;
      padding-top:42px;
      padding-bottom:32px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .about-company-grid{
      display:grid;
      grid-template-columns:minmax(320px, 640px) minmax(400px, 820px);
      justify-content:center;
      align-items:start;
      gap:clamp(20px, 3vw, 46px);
      width:100%;
    }

    .about-company-copy{
      padding-top:12px;
    }

    .about-company-overline{
      margin:0 0 8px;
      color:var(--gold-light);
      font-size:17px;
      font-weight:500;
      letter-spacing:3px;
      line-height:1.2;
      text-transform:uppercase;
    }

    .about-company-title{
      margin:0;
      color:#fff;
      font-size:62px;
      font-weight:900;
      line-height:1.08;
      letter-spacing:3px;
      text-shadow:0 8px 22px rgba(0,0,0,.22);
    }

    .about-company-line{
      width:58px;
      height:3px;
      margin:14px 0 20px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
    }

    .about-company-slogan{
      margin:0 0 16px;
      color:#fff;
      font-size:clamp(24px, 3vw, 36px);
      font-weight:900;
      line-height:1.32;
      letter-spacing:1px;
    }

    .about-company-text{
      max-width:620px;
      margin:0 0 12px;
      color:rgba(255,255,255,.76);
      font-size:15px;
      line-height:1.78;
      letter-spacing:.2px;
    }

    .about-company-quote{
      margin:18px 0 16px;
      padding-left:14px;
      border-left:3px solid var(--gold);
      color:rgba(255,255,255,.92);
      font-size:18px;
      font-weight:700;
      line-height:1.45;
    }

    .about-company-button{
      width:180px;
      height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(217,156,69,.9);
      border-radius:4px;
      color:#fff;
      background:linear-gradient(180deg,rgba(12,22,31,.72),rgba(7,13,19,.95));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.03),
        0 10px 22px rgba(0,0,0,.18);
      font-size:14px;
      font-weight:700;
      cursor:pointer;
      transition:transform .2s ease,filter .2s ease;
    }

    .about-company-button:hover{
      transform:translateY(-2px);
      filter:brightness(1.06);
    }

    /* 右侧图片固定为 820px，避免在宽屏电脑上被过度拉宽 */
    .about-company-media{
      position:relative;
      width:820px;
      height:455px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(135deg,#dcdfe2 0%,#f4f5f6 48%,#dcdee1 100%);
      box-shadow:0 18px 42px rgba(0,0,0,.26);
    }

    .about-company-badge{
      position:absolute;
      left:20px;
      bottom:18px;
      min-width:218px;
      padding:14px 20px 13px;
      border:1px solid rgba(255,255,255,.05);
      background:rgba(10,18,26,.9);
      box-shadow:0 12px 24px rgba(0,0,0,.22);
    }

    .about-company-badge strong{
      display:block;
      margin-bottom:6px;
      color:var(--gold-light);
      font-size:18px;
      font-weight:500;
      letter-spacing:2px;
    }

    .about-company-badge span{
      color:#fff;
      font-size:14px;
      font-weight:700;
      line-height:1.5;
    }

    .about-data-section{
      height:132px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .about-data-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      width:100%;
      height:132px;
      padding:0 72px;
    }

    .about-data-item{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
    }

    .about-data-item:not(:last-child)::after{
      content:"";
      position:absolute;
      top:50%;
      right:0;
      width:1px;
      height:58px;
      background:rgba(255,255,255,.16);
      transform:translateY(-50%);
    }

    .about-data-number{
      display:flex;
      align-items:baseline;
      justify-content:center;
      gap:4px;
      color:var(--gold-light);
      font-family:Georgia,"Times New Roman",serif;
      line-height:1;
    }

    .about-data-number strong{
      font-size:58px;
      font-weight:600;
    }

    .about-data-number span{
      font-size:25px;
      font-weight:600;
    }

    .about-data-label{
      margin-top:7px;
      color:rgba(255,255,255,.92);
      font-size:16px;
      line-height:1.5;
    }

    .customer-stories-section{
      padding:44px clamp(18px, 4vw, 72px) 46px;
    }

    .customer-stories-heading{
      margin-bottom:25px;
      text-align:center;
    }

    .customer-stories-overline{
      margin:0 0 7px;
      color:var(--gold-light);
      font-size:15px;
      font-weight:500;
      letter-spacing:5px;
      line-height:1.2;
      text-transform:uppercase;
    }

    .customer-stories-title{
      margin:0;
      color:#fff;
      font-size:54px;
      font-weight:900;
      line-height:1.06;
      letter-spacing:3px;
    }

    .customer-stories-line{
      width:60px;
      height:3px;
      margin:13px auto 10px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
    }

    .customer-stories-desc{
      margin:0;
      color:rgba(255,255,255,.76);
      font-size:15px;
      line-height:1.7;
    }

    .customer-stories-grid{
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:10px;
      width:100%;
      max-width:1420px;
      margin:0 auto;
    }

    .customer-story-card{
      position:relative;
      aspect-ratio:1 / 1;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(135deg,#dcdfe2 0%,#f4f5f6 48%,#dcdee1 100%);
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
      box-shadow:0 10px 22px rgba(0,0,0,.16);
    }

    .customer-story-card::before{
      display:none;
    }


    /* =========================================================
       第七屏：客户评价 + 联系我们
       来源：用户上传的“客户评价_联系我们_响应式还原_无图版.html”
       已命名空间隔离并适配完整官网的 1672px 等比例缩放框架
    ========================================================== */
    .cr-stage{
      isolation:isolate;
      background:
        radial-gradient(circle at 50% 12%,rgba(216,155,67,.08),transparent 18%),
        linear-gradient(180deg,#06121b 0%,#03080d 100%);
    }

    .cr-stage::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-3;
      background:
        linear-gradient(rgba(255,255,255,.014) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.014) 1px,transparent 1px),
        linear-gradient(
          90deg,
          rgba(0,0,0,.34),
          rgba(0,0,0,.05) 18%,
          rgba(0,0,0,.05) 82%,
          rgba(0,0,0,.34)
        );
      background-size:76px 76px,76px 76px,auto;
      opacity:.9;
      pointer-events:none;
    }

    .cr-stage::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:-2;
      background:
        radial-gradient(circle at 16% 12%,rgba(10,35,54,.45),transparent 20%),
        radial-gradient(circle at 84% 18%,rgba(10,35,54,.38),transparent 18%),
        radial-gradient(circle at 50% 76%,rgba(216,155,67,.05),transparent 24%);
      pointer-events:none;
    }

    .cr-content{
      width:100%;
      height:100%;
    }

    /* ---------- 客户评价 ---------- */
    .cr-reviews{
      position:relative;
      width:100%;
      padding:54px 64px 42px;
      z-index:2;
    }

    .cr-heading{
      margin-bottom:32px;
      text-align:center;
    }

    .cr-overline{
      margin:0 0 10px;
      color:var(--gold-light);
      font-size:18px;
      font-weight:600;
      letter-spacing:3px;
      line-height:1.2;
      text-transform:uppercase;
    }

    .cr-title{
      margin:0;
      color:#fff;
      font-size:72px;
      font-weight:900;
      line-height:1.08;
      letter-spacing:5px;
      text-shadow:0 8px 24px rgba(0,0,0,.22);
    }

    .cr-subtitle{
      margin:12px 0 0;
      color:rgba(255,255,255,.78);
      font-size:17px;
      line-height:1.8;
    }

    .cr-reviews-layout{
      display:grid;
      grid-template-columns:340px minmax(0,1fr);
      gap:34px;
      align-items:stretch;
    }

    .cr-rating-summary{
      min-height:420px;
      padding:22px 20px 20px;
      border:1px solid rgba(216,155,67,.85);
      border-radius:8px;
      background:
        linear-gradient(180deg,rgba(11,24,36,.88),rgba(8,19,29,.95));
      box-shadow:0 18px 42px rgba(0,0,0,.28);
    }

    .cr-summary-visual{
      width:116px;
      height:116px;
      margin-bottom:18px;
      border:1px dashed rgba(255,255,255,.12);
      border-radius:8px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
    }

    .cr-score-list{
      display:flex;
      flex-direction:column;
      gap:14px;
      margin-bottom:18px;
    }

    .cr-score-item{
      display:grid;
      grid-template-columns:1fr auto;
      gap:16px;
      align-items:center;
    }

    .cr-score-item h3{
      margin:0 0 4px;
      color:#fff;
      font-size:14px;
      font-weight:600;
      line-height:1.5;
    }

    .cr-score-item p{
      margin:0;
      color:var(--gold-light);
      font-size:12px;
      font-style:italic;
      line-height:1.4;
    }

    .cr-stars{
      color:var(--gold-light);
      font-size:15px;
      letter-spacing:3px;
      white-space:nowrap;
    }

    .cr-summary-slogan{
      margin:18px 0 8px;
      color:var(--gold-light);
      font-size:28px;
      font-weight:800;
      line-height:1.3;
      text-transform:uppercase;
    }

    .cr-summary-line{
      width:60px;
      height:3px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
    }

    .cr-review-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      grid-template-rows:repeat(3,minmax(0,1fr));
      gap:18px;
      min-width:0;
      height:420px;
    }

    .cr-review-card{
      display:grid;
      grid-template-columns:96px minmax(0,1fr);
      gap:14px;
      min-width:0;
      min-height:128px;
      padding:12px;
      border:1px solid rgba(216,155,67,.8);
      border-radius:8px;
      background:
        linear-gradient(180deg,rgba(11,24,36,.88),rgba(8,19,29,.95));
      box-shadow:0 12px 28px rgba(0,0,0,.18);
    }

    .cr-avatar{
      position:relative;
      width:96px;
      height:100%;
      min-height:104px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      border-radius:6px;
      background:
        linear-gradient(135deg,#dcdfe2 0%,#f4f5f6 48%,#dcdee1 100%);
    }

    .cr-avatar::before{
      display:none;
    }

    .cr-review-body{
      min-width:0;
    }

    .cr-review-country{
      margin:0 0 8px;
      overflow:hidden;
      color:#fff;
      font-size:16px;
      font-weight:800;
      line-height:1.3;
      text-transform:uppercase;
      white-space:nowrap;
      text-overflow:ellipsis;
    }

    .cr-review-text{
      margin:0;
      overflow:hidden;
      color:rgba(255,255,255,.78);
      font-size:13px;
      line-height:1.65;
      display:-webkit-box;
      -webkit-line-clamp:5;
      -webkit-box-orient:vertical;
    }

    /* ---------- 联系我们 ---------- */
    .cr-contact{
      position:relative;
      width:100%;
      padding:36px 64px 62px;
      border-top:1px solid rgba(255,255,255,.08);
      z-index:2;
    }

    .cr-contact-layout{
      display:grid;
      grid-template-columns:minmax(480px, 1fr) minmax(0, 1fr);
      gap:46px;
      align-items:stretch;
    }

    .cr-contact-copy{
      position:relative;
      min-width:0;
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:42px var(--page-x) 34px;
      border-right:1px solid rgba(255,255,255,.08);
    }

    .cr-contact-copy::after{
      content:"";
      position:absolute;
      top:10px;
      right:-23px;
      width:1px;
      height:calc(100% - 20px);
      background:rgba(255,255,255,.12);
    }

    .cr-contact-overline{
      margin:0 0 10px;
      color:var(--gold-light);
      font-size:17px;
      letter-spacing:3px;
      line-height:1.2;
      text-transform:uppercase;
    }

    .cr-contact-title-en{
      margin:0;
      color:var(--gold-light);
      font-size:52px;
      font-weight:900;
      line-height:1.08;
      letter-spacing:1px;
      text-transform:uppercase;
    }

    .cr-contact-title-cn{
      margin:8px 0 14px;
      color:#fff;
      font-size:36px;
      font-weight:900;
      line-height:1.35;
    }

    .cr-contact-desc{
      margin:0 0 18px;
      color:rgba(255,255,255,.78);
      font-size:16px;
      line-height:1.8;
    }

    .cr-benefits{
      display:flex;
      flex-direction:column;
      gap:12px;
      margin-bottom:24px;
    }

    .cr-benefit-item{
      color:rgba(255,255,255,.92);
      font-size:15px;
      line-height:1.7;
    }

    .cr-benefit-item::before{
      content:"✓";
      margin-right:10px;
      color:var(--gold-light);
      font-weight:700;
    }

    .cr-contact-illustration{
      position:relative;
      width:100%;
      height:182px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      border-radius:8px;
      box-shadow:0 18px 42px rgba(0,0,0,.28);
    }

    .cr-contact-caption{
      margin-top:12px;
      color:rgba(255,255,255,.4);
      font-size:12px;
      letter-spacing:5px;
      line-height:1.4;
      text-transform:uppercase;
    }

    .cr-form-panel{
      min-width:0;
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:42px var(--page-x) 34px;
      border:0;
      background:transparent;
      box-shadow:none;
    }

    .cr-form-title{
      margin:0;
      color:#fff;
      font-size:42px;
      font-weight:900;
      line-height:1.2;
    }

    .cr-form-subtitle{
      margin:10px 0 22px;
      color:rgba(255,255,255,.56);
      font-size:14px;
      line-height:1.7;
    }

    .cr-form-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }

    .cr-field{
      min-width:0;
    }

    .cr-field-full{
      grid-column:1 / -1;
    }

    .cr-label{
      display:block;
      margin:0 0 8px;
      color:#fff;
      font-size:14px;
      line-height:1.5;
    }

    .cr-required{
      margin-left:4px;
      color:#ff6b59;
    }

    .cr-input-wrap{
      display:flex;
      align-items:center;
      width:100%;
      min-height:44px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(8,18,27,.58);
    }

    .cr-prefix{
      width:40px;
      min-height:44px;
      display:flex;
      flex:0 0 auto;
      align-items:center;
      justify-content:center;
      border-right:1px solid rgba(255,255,255,.12);
      color:#fff;
      font-size:16px;
    }
     input.cr-prefix{
      padding:0;
      border:0;
      outline:none;
      background:transparent;
      text-align:center;
      font-family:inherit;
    }

    input.cr-area{
      width:56px;
      border-right:1px solid rgba(255,255,255,.12);
    }


    .cr-input,
    .cr-textarea{
      width:100%;
      border:0;
      outline:none;
      color:rgba(255,255,255,.92);
      background:transparent;
      font-family:inherit;
    }

    .cr-input{
      min-height:44px;
      padding:0 12px;
      font-size:14px;
    }

    .cr-textarea{
      min-height:94px;
      padding:12px;
      resize:none;
      font-size:14px;
      line-height:1.7;
    }

    .cr-input::placeholder,
    .cr-textarea::placeholder{
      color:rgba(255,255,255,.35);
    }

    .cr-submit-btn{
      width:100%;
      height:52px;
      margin-top:10px;
      border:0;
      color:#1b1207;
      background:linear-gradient(180deg,#ebb158 0%,#d99435 100%);
      box-shadow:0 10px 20px rgba(0,0,0,.18);
      font-size:18px;
      font-weight:800;
      letter-spacing:1px;
      cursor:pointer;
      transition:transform .18s ease,filter .18s ease;
    }

    .cr-submit-btn:hover{
      transform:translateY(-1px);
      filter:brightness(1.04);
    }

    .cr-form-note{
      margin:12px 0 0;
      color:rgba(255,255,255,.42);
      font-size:12px;
      line-height:1.6;
      text-align:center;
    }

    .cr-form-status{
      margin:14px 0 0;
      padding:10px 16px;
      border-radius:6px;
      font-size:14px;
      text-align:center;
      line-height:1.5;
    }
    .cr-form-status.success{
      background:rgba(39,174,96,.18);
      color:#6fcf97;
      border:1px solid rgba(39,174,96,.35);
    }
    .cr-form-status.error{
      background:rgba(235,87,87,.18);
      color:#eb5757;
      border:1px solid rgba(235,87,87,.35);
    }


    /* =========================================================
       第八屏：底部 CTA + 页脚
       命名空间隔离，适配完整官网 1672px 等比例缩放框架
    ========================================================== */
    .footer-stage{
      isolation:isolate;
      overflow:visible;
      background:
        radial-gradient(circle at 50% 23%,rgba(217,147,51,.08),transparent 18%),
        linear-gradient(180deg,#06121b 0%,#03080d 100%);
    }

    #footer.scaled-section{overflow:visible;}

    .footer-stage::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-4;
      background:
        linear-gradient(rgba(255,255,255,.014) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.014) 1px,transparent 1px),
        linear-gradient(
          90deg,
          rgba(0,0,0,.34),
          rgba(0,0,0,.05) 18%,
          rgba(0,0,0,.05) 82%,
          rgba(0,0,0,.34)
        );
      background-size:76px 76px,76px 76px,auto;
      opacity:.95;
    }

    .footer-stage::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:-3;
      background:
        radial-gradient(circle at 8% 18%,rgba(10,35,54,.42),transparent 18%),
        radial-gradient(circle at 92% 22%,rgba(10,35,54,.35),transparent 18%),
        radial-gradient(circle at 50% 32%,rgba(217,147,51,.05),transparent 18%);
      pointer-events:none;
    }

    .ft-content{
      width:100%;
      height:100%;
    }

    /* ---------- 顶部 CTA ---------- */
    .ft-cta{
      position:relative;
      height:220px;
      display:flex;
      align-items:center;
      padding:34px 78px;
      border-bottom:1px solid rgba(217,147,51,.72);
    }

    .ft-cta::before,
    .ft-cta::after{
      content:"";
      position:absolute;
      top:22px;
      width:152px;
      height:152px;
      border:1px dashed rgba(217,147,51,.20);
      opacity:.52;
      pointer-events:none;
    }

    .ft-cta::before{
      left:0;
      border-radius:16px;
    }

    .ft-cta::after{
      right:0;
      border-radius:50%;
    }

    .ft-cta-row{
      position:relative;
      z-index:2;
      width:100%;
      display:grid;
      grid-template-columns:1.28fr .82fr 232px;
      align-items:center;
      gap:52px;
    }

    .ft-cta-overline{
      margin:0 0 10px;
      color:var(--gold-light);
      font-size:22px;
      letter-spacing:5px;
      line-height:1.2;
      text-transform:uppercase;
    }

    .ft-cta-title{
      margin:0;
      color:#fff;
      font-size:54px;
      font-weight:900;
      line-height:1.14;
      letter-spacing:2px;
      text-shadow:0 8px 24px rgba(0,0,0,.2);
    }

    .ft-cta-contact{
      display:flex;
      align-items:center;
      gap:16px;
      min-width:0;
    }

    .ft-cta-icon{
      width:58px;
      height:58px;
      flex:0 0 auto;
      border:2px solid var(--gold);
      border-radius:50%;
      background:linear-gradient(135deg,rgba(217,147,51,.08),rgba(217,147,51,.02));
    }

    .ft-cta-label{
      margin:0 0 8px;
      color:rgba(255,255,255,.86);
      font-size:20px;
      line-height:1.2;
    }

    .ft-cta-phone{
      margin:0;
      color:var(--gold-light);
      font-size:28px;
      font-weight:800;
      line-height:1.15;
      white-space:nowrap;
    }

    .ft-cta-btn{
      width:232px;
      height:72px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:12px;
      border:2px solid var(--gold);
      color:#fff;
      background:linear-gradient(180deg,rgba(8,19,29,.58),rgba(7,14,20,.82));
      box-shadow:0 16px 32px rgba(0,0,0,.22);
      font-size:20px;
      font-weight:700;
      letter-spacing:1px;
      cursor:pointer;
      transition:transform .18s ease,filter .18s ease;
    }

    .ft-cta-btn:hover{
      transform:translateY(-2px);
      filter:brightness(1.05);
    }

    /* ---------- 主页脚 ---------- */
    .ft-main{
      padding:32px 78px 40px;
    }

    .ft-grid{
      display:grid;
      grid-template-columns:1.26fr .66fr .66fr 1.06fr;
      gap:46px;
      align-items:start;
    }

    .ft-col{
      position:relative;
      min-width:0;
      padding:0 8px;
    }

    .ft-col:not(:first-child)::before{
      content:"";
      position:absolute;
      left:-23px;
      top:4px;
      width:1px;
      height:420px;
      background:rgba(255,255,255,.12);
    }

    .ft-brand-row{
      display:flex;
      align-items:center;
      gap:18px;
      margin-bottom:22px;
    }

    .ft-brand{
      margin:0;
      color:#fff;
      font-size:42px;
      font-weight:900;
      line-height:1.15;
      letter-spacing:2px;
    }

    .ft-desc{
      max-width:520px;
      margin:0 0 28px;
      color:rgba(255,255,255,.72);
      font-size:17px;
      line-height:2;
    }

    .ft-features{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
      max-width:520px;
    }

    .ft-feature{
      text-align:center;
    }

    .ft-feature-icon{
      width:76px;
      height:76px;
      margin:0 auto 12px;
      border:2px solid var(--gold);
      border-radius:50%;
      background:linear-gradient(135deg,rgba(217,147,51,.08),rgba(217,147,51,.02));
    }

    .ft-feature-label{
      color:var(--gold-light);
      font-size:17px;
      font-weight:700;
      line-height:1.4;
      white-space:nowrap;
    }

    .ft-col-title{
      margin:0 0 24px;
      color:var(--gold-light);
      font-size:30px;
      font-weight:900;
      line-height:1.2;
    }

    .ft-links{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:17px;
    }

    .ft-links a{
      color:rgba(255,255,255,.92);
      font-size:18px;
      line-height:1.5;
      transition:color .18s ease,padding-left .18s ease;
    }

    .ft-links a:hover{
      color:var(--gold-light);
      padding-left:5px;
    }

    .ft-contact-list{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .ft-contact-item{
      display:grid;
      grid-template-columns:50px 1fr;
      gap:14px;
      align-items:start;
    }
    
    .ft-social{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-end;
      gap:12px;
      margin-top:24px;
      padding-right:100px;
    }

    .ft-social-item{
      width:40px;
      height:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(255,255,255,.16);
      border-radius:50%;
      transition:border-color .2s ease, transform .2s ease, background .2s ease;
    }

    .ft-social-item img{
      width:22px;
      height:22px;
      object-fit:contain;
    }

    .ft-social-item:hover{
      border-color:var(--gold);
      background:rgba(217,147,51,.08);
      transform:translateY(-2px);
    }


    .ft-contact-icon{
      width:50px;
      height:50px;
      border:2px solid var(--gold);
      border-radius:50%;
      background:linear-gradient(135deg,rgba(217,147,51,.08),rgba(217,147,51,.02));
    }

    .ft-contact-label{
      margin:0 0 7px;
      color:rgba(255,255,255,.72);
      font-size:16px;
      line-height:1.4;
    }

    .ft-contact-text{
      margin:0;
      color:#fff;
      font-size:18px;
      line-height:1.6;
      word-break:break-word;
    }

    /* ---------- 版权栏 ---------- */
    .ft-bottom{
      margin:0 78px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.10);
    }

    .ft-bottom-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:22px;
    }

    .ft-copyright,
    .ft-support{
      margin:0;
      color:rgba(255,255,255,.72);
      font-size:17px;
      line-height:1.5;
      white-space:nowrap;
    }

    .ft-policy{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:16px;
    }

    .ft-policy a,
    .ft-policy span{
      color:rgba(255,255,255,.72);
      font-size:17px;
      line-height:1.5;
    }

    .ft-policy a:first-child{
      color:var(--gold-light);
    }

    @media (prefers-reduced-motion:reduce){
      html{scroll-behavior:auto;}
      .product-card,
      .project-card{
        transition:none;
      }
    }

    /* =========================================================
       英文兼容样式
    ========================================================== */
    html[lang="en"] .main-nav{
      gap:22px;
    }
    html[lang="en"] .nav-link{
      font-size:14px;
    }
    html[lang="en"] .hero-title{
      font-size:clamp(32px,3.8vw,56px);
    }
    html[lang="en"] .hero-eyebrow{
      font-size:18px;
      letter-spacing:2px;
    }
    html[lang="en"] .hero-desc{
      font-size:clamp(14px,1.2vw,18px);
      line-height:1.6;
      letter-spacing:0;
    }
    html[lang="en"] .hero-copy{
      width:clamp(520px,48vw,860px);
    }
    html[lang="en"] .hero-actions{
      gap:24px;
    }
    html[lang="en"] .primary-button{
      width:auto;
      padding:0 22px;
    }
    html[lang="en"] .section-title{
      font-size:38px;
      letter-spacing:1px;
    }
    html[lang="en"] .section-desc{
      font-size:15px;
      line-height:1.6;
      letter-spacing:0;
    }
    html[lang="en"] .stat-label{
      font-size:14px;
    }
    html[lang="en"] .floating-tools{
      width:135px;
    }
    html[lang="en"] .tool-link{
      font-size:13px;
      padding:10px 6px;
    }
    html[lang="en"] .product-name{
      font-size:16px;
      white-space:normal;
      line-height:1.3;
    }
    html[lang="en"] .product-meta{
      font-size:12px;
      white-space:normal;
    }
    html[lang="en"] .product-desc{
      font-size:12px;
    }
    html[lang="en"] .project-tag{
      font-size:12px;
      white-space:normal;
    }
    html[lang="en"] .project-desc{
      font-size:12px;
      height:auto;
      min-height:40px;
    }
    html[lang="en"] .projects-content .section-title{
      font-size:36px;
    }
    html[lang="en"] .projects-content .section-desc{
      font-size:14px;
      line-height:1.5;
    }

    /* --- 关于我们英文适配 --- */
    html[lang="en"] .about-company-title{
      font-size:clamp(26px,3.2vw,30px);
    }
    html[lang="en"] .about-company-slogan{
      font-size:clamp(18px,2.2vw,26px);
      line-height:1.4;
    }
    html[lang="en"] .about-company-text{
      font-size:14px;
      line-height:1.65;
    }
    html[lang="en"] .about-company-overline{
      font-size:15px;
    }
    html[lang="en"] .about-company-quote{
      font-size:16px;
    }
    html[lang="en"] .about-company-button{
      width:auto;
      padding:0 20px;
    }
    html[lang="en"] .about-data-number strong{
      font-size:48px;
    }
    html[lang="en"] .about-data-label{
      font-size:13px;
    }

    /* =========================================================
       移动端适配
    ========================================================== */
    @media (max-width:980px){
      /* ===== 解除缩放系统（与首页 index-mobile.css 保持一致）===== */
      :root{--scale:1!important}
      html{overflow-x:hidden!important}
      body{overflow-x:hidden!important;max-width:100vw!important}
      .scaled-section{height:auto!important;min-height:auto!important;overflow:hidden!important}
      .stage{
        position:relative!important;
        width:100%!important;
        min-width:auto!important;
        transform:none!important;
        transform-origin:unset!important;
        height:auto!important;
        min-height:auto!important;
        left:0;
      }
      .stage-941,.stage-680,.stage-720,.stage-800,.stage-900,.stage-1320{height:auto!important;min-height:auto!important}
      /* ===== 头部导航（与index.html保持一致）===== */
      .header-shell{
        position:fixed!important;
        z-index:1000;
        top:0;left:0;
        width:100%!important;
        height:auto!important;
        overflow:visible!important;
        pointer-events:auto!important;
      }
      .site-header{
        width:100%!important;
        height:auto!important;
        min-height:44px;
        transform:none!important;
        transform-origin:unset!important;
        display:flex!important;
        flex-wrap:nowrap!important;
        align-items:center;
        padding:6px 6px!important;
        gap:0;
        background:transparent;
      }
      .brand{
        flex:0 0 auto!important;
        font-size:0!important;
        letter-spacing:0!important;
        margin-left:0!important;
        margin-right:2px;
        gap:0!important;
      }
      .site-header .brand-logo{height:20px!important;width:auto!important;max-width:44px!important;object-fit:contain}
      .main-nav{
        flex:1 1 auto!important;
        min-width:0!important;
        height:auto!important;
        justify-content:space-between!important;
        flex-wrap:nowrap!important;
        gap:0!important;
        overflow:visible!important;
        white-space:nowrap;
      }
      .nav-link{
        flex:1 1 0!important;
        font-size:clamp(8px,2.1vw,11px)!important;
        letter-spacing:0!important;
        white-space:nowrap;
        padding:8px 0;
        text-shadow:0 1px 4px rgba(0,0,0,.95),0 0 10px rgba(0,0,0,.55);
      }
      .nav-link::after{bottom:3px!important;height:2px!important}
      html[lang="en"] .main-nav{gap:0!important}
      html[lang="en"] .nav-link{font-size:clamp(7.5px,2vw,10px)!important}
      .header-tools{
        flex:0 0 auto!important;
        font-size:0!important;
        gap:0!important;
        margin-left:2px;
      }
      .header-tools span{display:none!important}
      .lang-switch-img{width:26px!important;height:26px!important;margin:0!important}

      /* 联系方式 */
      .cr-contact{padding:30px 0!important}
      .cr-contact-layout{grid-template-columns:1fr!important;gap:24px!important}
      .cr-contact-copy{padding:0 16px!important;margin-right:0!important}
      .cr-contact-overline{font-size:15px!important;margin-bottom:8px!important}
      .cr-contact-title-en{font-size:clamp(22px,5vw,32px)!important}
      .cr-contact-title-cn{font-size:clamp(16px,3.5vw,22px)!important;margin-bottom:8px!important}
      .cr-contact-desc{font-size:13px!important;line-height:1.6!important}
      .cr-benefits{gap:8px!important;flex-wrap:wrap}
      .cr-benefit-item{font-size:12px!important;padding:6px 10px!important}
      .cr-contact-illustration{height:180px!important;margin:16px 0!important}
      .cr-contact-caption{font-size:13px!important;letter-spacing:2px!important}
      .cr-form-panel{padding:20px 16px!important}
      .cr-form-title{font-size:20px!important}
      .cr-form-subtitle{font-size:13px!important}
      .cr-form-grid{grid-template-columns:1fr!important;gap:12px!important}
      .cr-label{font-size:13px!important}
      .cr-input{padding:8px 10px!important;font-size:13px!important}
      .cr-textarea{min-height:100px!important;font-size:13px!important}
      .cr-submit-btn{height:44px!important;font-size:16px!important}
      .cr-form-note{font-size:11px!important}

      /* 底部（与首页 index-mobile.css 保持一致） */
      #footer.scaled-section{height:auto!important;overflow:visible!important}
      .footer-stage{height:auto!important;min-height:auto!important}
      .ft-cta{height:auto!important;padding:28px 16px!important}
      .ft-cta::before,
      .ft-cta::after{display:none}
      .ft-cta-row{grid-template-columns:1fr!important;gap:14px!important;text-align:center}
      .ft-cta-overline{font-size:14px!important;letter-spacing:2px!important}
      .ft-cta-title{font-size:clamp(20px,5.5vw,32px)!important}
      .ft-cta-contact{justify-content:center}
      .ft-cta-icon{width:44px!important;height:44px!important}
      .ft-cta-label{font-size:15px!important}
      .ft-cta-phone{font-size:20px!important}
      .ft-cta-btn{width:100%!important;height:48px!important;font-size:16px!important}
      .ft-main{padding:24px 16px!important}
      .ft-grid{grid-template-columns:1fr!important;gap:20px!important}
      .ft-col{padding:0!important}
      .ft-col:not(:first-child)::before{display:none!important}
      .ft-brand-row{margin-bottom:12px!important}
      .ft-brand-row .brand-logo{height:36px!important}
      .ft-desc{font-size:13px!important;line-height:1.7;max-width:100%!important;margin-bottom:16px!important}
      .ft-features{grid-template-columns:repeat(3,1fr)!important;gap:10px;max-width:100%}
      .ft-feature-icon{width:48px!important;height:48px!important}
      .ft-feature-label{font-size:13px!important}
      .ft-col-title{font-size:18px!important;margin-bottom:10px!important}
      .ft-links{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important;overflow:visible!important;white-space:normal!important;gap:10px 16px}
      .ft-links li{flex-shrink:0}
      .ft-links a{font-size:14px!important;white-space:nowrap}
      .ft-contact-list{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important;gap:10px 18px!important}
      .ft-contact-item{display:flex!important;flex-direction:row!important;align-items:center!important;gap:8px!important;flex:0 0 auto!important;width:auto!important}
      .ft-contact-item > div:last-child{display:flex!important;flex-direction:row!important;align-items:center!important;flex-wrap:wrap!important;gap:2px 6px!important}
      .ft-contact-icon{width:26px!important;height:26px!important;flex:0 0 auto!important;border-width:1px!important}
      .ft-contact-label{font-size:12px!important;margin:0!important;white-space:nowrap}
      .ft-contact-text{font-size:13px!important;white-space:nowrap}
    }
    @media (max-width:640px){
      .cr-contact-illustration{height:140px!important}
      .ft-cta{padding:20px 12px!important}
      .ft-cta-overline{font-size:12px!important}
      .ft-cta-title{font-size:clamp(18px,6vw,26px)!important}
      .ft-cta-icon{width:36px!important;height:36px!important}
      .ft-cta-phone{font-size:18px!important}
      .ft-main{padding:20px 12px!important}
      .ft-grid{gap:16px!important}
      .ft-brand-row .brand-logo{height:30px!important}
      .ft-desc{font-size:12px!important}
      .ft-features{grid-template-columns:repeat(3,1fr)!important;gap:8px}
      .ft-feature-icon{width:40px!important;height:40px!important}
      .ft-feature-label{font-size:11px!important}
      .ft-col-title{font-size:16px!important}
      .ft-links{gap:10px}
      .ft-links a{font-size:13px!important}
      .ft-contact-icon{width:22px!important;height:22px!important}
      .ft-contact-text{font-size:12px!important}
      .ft-contact-label{font-size:11px!important}
      .site-header{padding:5px 4px!important;min-height:40px}
      .site-header .brand-logo{height:18px!important;width:auto!important;max-width:40px!important;object-fit:contain}
      .main-nav{gap:0!important}
      .nav-link{font-size:clamp(8px,2.1vw,11px)!important;padding:6px 0}
      .lang-switch-img{width:18px!important;height:18px!important}
    }
