:root{
      --bg:#f7f9fc;
      --bg-soft:#284e7c;
      --text:#10233f;
      --muted:#5a5966;
      --line:rgba(23,64,124,.10);
      --blue:#2d6cdf;
      --blue-deep:#194fae;
      --blue-soft:#e9f1ff;
      --shadow:0 16px 40px rgba(24,55,110,.08);
      --max:1240px;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:'Inter',sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(101,146,255,.10), transparent 28%),
        radial-gradient(circle at top right, rgba(99,210,255,.10), transparent 24%),
        linear-gradient(180deg,#fbfcfe 0%, #f6f9fd 100%);
      line-height:1.55;
    }

    img{max-width:100%;display:block}
    a{text-decoration:none;color:inherit}
     .container{    width:min(calc(100% - 40px), var(--max));    margin:auto;  }
    .section{padding:40px 0}

    .section-head{
      max-width:760px;
      margin:0 auto 42px;
      text-align:center;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 14px;
      border:1px solid rgba(45,108,223,.12);
      background:rgba(255,255,255,.7);
      color:var(--blue-deep);
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      backdrop-filter: blur(8px);
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg,var(--blue),#7db3ff);
      box-shadow:0 0 0 6px rgba(45,108,223,.08);
    }

    h1,h2,h3,h4{letter-spacing:-.03em}
    h2{
      font-size:clamp(34px, 4vw, 52px);
      line-height:1.08;
      margin-top:16px;
    }

    .section-head p{
      margin-top:14px;
      color:var(--muted);
      font-size:17px;
    }

  .hero {
      position: relative;
      overflow: hidden;
      min-height: 620px;
      border-bottom-left-radius: 28px;
      border-bottom-right-radius: 28px;
      background: 
        radial-gradient(circle at 0% 20%, rgba(101,146,255,.12), transparent 55%),
        radial-gradient(circle at 100% 80%, rgba(99,210,255,.12), transparent 48%),
        linear-gradient(125deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.90) 100%);
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: auto auto 0 0;
      width: 42%;
      height: 40%;
      background: radial-gradient(circle, rgba(77,148,255,.18) 0%, rgba(77,148,255,0) 72%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-slider {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 620px;
      overflow: hidden;
    }

    .slides-container {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 620px;
    }

    .slide-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .slide {
      flex: 0 0 100%;
      width: 100%;
      min-height: 620px;
      position: relative;
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
    }

    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, 
        rgba(255, 255, 245, 0.85) 0%, 
        rgba(255, 255, 245, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(15, 32, 61, 0.06) 0%, rgba(25, 79, 174, 0.02) 42%, rgba(255,255,255,0) 78%);
      pointer-events: none;
      z-index: 2;
    }

    .slide-inner {
      position: relative;
      z-index: 3;
      width: min(calc(100% - 48px), var(--max));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 40px;
      align-items: center;
      padding: 64px 0;
      min-height: 620px;
    }

    .hero-copy {
      max-width: 610px;
      padding: 20px 0;
    }

    .hero-copy h1 {
      font-size: clamp(46px, 6vw, 78px);
      line-height: 1.02;
      color: #0433b4;
    }

    .hero-copy p {
      margin-top: 22px;
      font-size: 18px;
      color: var(--muted);
      max-width: 560px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 600;
      transition: .25s ease;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
      box-shadow: 0 12px 26px rgba(45,108,223,.24);
    }

    .btn-primary:hover { transform: translateY(-2px); }

    .btn-secondary {
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(30,76,153,.12);
      color: #244064;
      backdrop-filter: blur(10px);
    }

    .hero-note {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 26px;
      color: #0313a7;
      font-size: 14px;
    }

    .hero-note span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-note span::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue);
      opacity: .8;
    }

    .hero-visual-placeholder {
    }

    .slider-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.82);
      backdrop-filter: blur(12px);
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      border: 1px solid rgba(45,108,223,.18);
      box-shadow: 0 6px 18px rgba(0,0,0,0.04);
      transition: all 0.2s ease;
      color: #1a3d6e;
      font-size: 32px;
      font-weight: 500;
      line-height: 1;
    }

    .slider-control:hover {
      background: #fff;
      border-color: var(--blue);
      color: var(--blue);
      transform: translateY(-50%) scale(1.03);
    }

    .slider-prev {
      left: 28px;
    }
    .slider-next {
      right: 28px;
    }

    .slider-dots {
      position: absolute;
      bottom: 28px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 14px;
      z-index: 20;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: rgba(45,108,223,0.32);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.2s ease;
      backdrop-filter: blur(4px);
      border: none;
      padding: 0;
    }

    .dot.active {
      width: 28px;
      background: var(--blue);
      border-radius: 12px;
      box-shadow: 0 0 8px rgba(45,108,223,0.6);
    }

    @media (max-width: 1120px){.platform-grid{grid-template-columns:repeat(2, 1fr)} .solutions-wrap{grid-template-columns:1fr} .why-grid{grid-template-columns:1fr} .news-wrap{grid-template-columns:1fr}}
    @media (max-width: 900px){.solution-card.with-image{grid-template-columns:1fr}}
    @media (max-width: 768px){.container{width:min(calc(100% - 28px), var(--max))} .platform-grid{grid-template-columns:1fr} .stat-row{grid-template-columns:1fr} .industry-item{min-height:220px} .industry-content h3{font-size:30px} .news-feature-content{padding:26px}}

    .platform-grid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:20px;
      margin-top:8px;
    }

    .platform-item{
      position:relative;
      overflow:hidden;
      padding:26px 24px 22px;
      border-radius:22px;
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,252,255,.90));
      border:1px solid rgba(29,79,174,.10);
      box-shadow:var(--shadow);
      min-height:220px;
      transition:.28s ease;
      isolation:isolate;
    }

    .platform-item::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:4px;
      background:linear-gradient(90deg, rgba(45,108,223,.95), rgba(125,179,255,.75));
      z-index:0;
    }

    .platform-item::after{
      content:"";
      position:absolute;
      right:-40px;
      top:-40px;
      width:140px;
      height:140px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(77,148,255,.14), rgba(77,148,255,0) 70%);
      z-index:0;
    }

    .platform-item:hover{
      transform:translateY(-6px);
      box-shadow:0 20px 50px rgba(24,55,110,.12);
    }

    .platform-link{
      text-decoration:none;
      color:inherit;
      display:block;
    }

    .platform-link .platform-item{
      height:380px;
    }

    .platform-top{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:20px;
    }

    .platform-icon{
      width:56px;
      height:56px;
      border-radius:18px;
      display:grid;
      place-items:center;
      color:var(--blue-deep);
      background:linear-gradient(180deg, #f4f8ff 0%, #eaf2ff 100%);
      border:1px solid rgba(45,108,223,.10);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
    }

    .platform-icon svg{width:28px;height:28px}

    .platform-tag{
      font-size:12px;
      font-weight:700;
      color:var(--blue-deep);
      padding:7px 10px;
      background:rgba(45,108,223,.08);
      border-radius:999px;
      white-space:nowrap;
    }

    .platform-item h3{
      position:relative;
      z-index:1;
      font-size:27px;
      margin-bottom:8px;
      color:#18345f;
    }

    .platform-item p{
      position:relative;
      z-index:1;
      color:var(--muted);
      font-size:15px;
      max-width:280px;
    }

    .platform-meta{
      position:relative;
      z-index:1;
      margin-top:16px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    .platform-meta span{
      font-size:12px;
      font-weight:600;
      color:#365173;
      background:rgba(16,35,63,.04);
      border:1px solid rgba(16,35,63,.06);
      padding:7px 10px;
      border-radius:999px;
    }

    .solutions-wrap{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      align-items:stretch;
    }

    .featured-system{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      background:
        linear-gradient(180deg, rgba(16,35,63,.05), rgba(16,35,63,.02)),
        linear-gradient(180deg, #f8fbff 0%, #eef4fd 100%);
      border:1px solid rgba(23,64,124,.09);
      box-shadow:var(--shadow);
      min-height:620px;
      display:flex;
      flex-direction:column;
    }

    .featured-visual{
      min-height:350px;
      border-bottom:1px solid rgba(23,64,124,.08);
      background:linear-gradient(180deg, #f6f9ff 0%, #eaf2ff 100%);
      overflow:hidden;
      position:relative;
      z-index:0;
    }

    .featured-visual iframe{
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      display:none;
      z-index:1;
    }

    .featured-visual iframe.playing{
      display:block;
    }

    .video-thumbnail{
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:1;
    }

    .video-thumbnail.hidden{
      display:none;
    }

    .featured-video-placeholder{
      width:100%;
      height:100%;
      min-height:350px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:14px;
      color:var(--blue-deep);
      font-weight:700;
    }

    .featured-video{
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .featured-video-overlay{
      position:absolute;
      inset:0;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:14px;
      color:var(--blue-deep);
      font-weight:700;
      background:rgba(0,0,0,.2);
      z-index:2;
      cursor:pointer;
    }

    .featured-video-placeholder .play-btn{
      width:78px;
      height:78px;
      border-radius:50%;
      background:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 24px rgba(24,55,110,.10);
    }

    .featured-video-placeholder .play-btn::after{
      content:"▶";
      margin-left:4px;
      font-size:20px;
    }

    .featured-body{
      padding:28px 28px 30px;
      display:flex;
      flex-direction:column;
      gap:16px;
    }

    .featured-label{
      display:inline-flex;
      align-items:center;
      width:max-content;
      gap:10px;
      font-size:12px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em;
      color:var(--blue-deep);
      padding:8px 12px;
      background:rgba(45,108,223,.08);
      border-radius:999px;
    }

    .featured-body h3{
      font-size:34px;
      line-height:1.05;
      color:#17335d;
    }

    .featured-body p{
      color:var(--muted);
      font-size:16px;
    }

    .stat-row{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
      margin-top:6px;
    }

    .stat{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(23,64,124,.08);
      border-radius:18px;
      padding:16px 14px;
      text-align:center;
    }

    .stat strong{
      display:block;
      font-size:26px;
      color:var(--blue-deep);
      line-height:1;
    }

    .stat span{
      display:block;
      margin-top:8px;
      font-size:13px;
      color:#49607f;
      font-weight:600;
    }

    .featured-list{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:2px;
    }

    .featured-list span{
      display:inline-flex;
      align-items:center;
      min-height:38px;
      padding:0 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(23,64,124,.08);
      color:#27466d;
      font-weight:600;
      font-size:14px;
    }

    .solutions-list{
      display:grid;
      grid-template-columns:1fr;
      gap:18px;
    }

    .solution-card{
      position:relative;
      overflow:hidden;
      padding:24px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,252,255,.88));
      border:1px solid rgba(23,64,124,.08);
      box-shadow:var(--shadow);
    }

    .solution-card::after{
      content:"";
      position:absolute;
      right:-28px;
      bottom:-28px;
      width:110px;
      height:110px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(45,108,223,.10), rgba(45,108,223,0) 68%);
    }

    .solution-card.with-image{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
      align-items:center;
      min-height:260px;
    }

    .solution-content{
      position:relative;
      z-index:1;
      min-width:0;
    }

    .solution-media-large{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:center;
      min-height:210px;
      border-radius:20px;
      background:linear-gradient(180deg,#f6f9ff,#eaf2ff);
      border:1px solid rgba(23,64,124,.08);
      overflow:hidden;
    }

    .solution-media-large img{
      width:100%;
      height:100%;
      object-fit:contain;
      padding:16px;
    }

    .solution-media-large.placeholder{
      color:var(--blue-deep);
      font-size:18px;
      font-weight:700;
      text-align:center;
      line-height:1.3;
    }

    .solution-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      margin-bottom:12px;
      position:relative;
      z-index:1;
    }

    .solution-head h4{
      font-size:26px;
      line-height:1.06;
      color:#18345f;
    }

    .solution-type{
      font-size:12px;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:var(--blue-deep);
      background:rgba(45,108,223,.08);
      border-radius:999px;
      padding:8px 10px;
      white-space:nowrap;
    }

    .solution-card p{
      color:var(--muted);
      font-size:15px;
      margin-bottom:14px;
      max-width:520px;
      position:relative;
      z-index:1;
    }

    .solution-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      position:relative;
      z-index:1;
    }

    .solution-points span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(23,64,124,.08);
      color:#2a456a;
      font-size:14px;
      font-weight:600;
    }

    .solution-points span::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--blue);
    }

    .industry-list{
      display:grid;
      gap:20px;
    }

    .industry-item{
      position:relative;
      overflow:hidden;
      min-height:250px;
      border-radius:28px;
      display:grid;
      align-items:end;
      box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,.22);
      isolation:isolate;
      transition:.28s ease;
    }

    .industry-link {
      text-decoration: none;
       color: inherit;
    }

    .industry-item > img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:-1;
    }

    .industry-item:hover{
      transform:translateY(-4px);
      box-shadow:0 20px 50px rgba(24,55,110,.12);
    }

    .industry-item::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg, rgba(15,32,61,.62) 0%, rgba(23,64,124,.24) 42%, rgba(255,255,255,0) 100%);
      z-index:0;
    }

    .industry-item::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(9,24,48,.16) 100%);
      z-index:0;
    }

    .industry-content{
      position:relative;
      z-index:1;
      width:min(100%, 680px);
      padding:34px;
      color:#fff;
    }

    .industry-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:34px;
      padding:0 14px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      backdrop-filter:blur(10px);
      font-size:12px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:#fff;
    }

    .industry-content h3{
      font-size:38px;
      line-height:1.04;
      margin-top:14px;
    }

    .industry-content p{
      margin-top:12px;
      color:rgba(255,255,255,.88);
      font-size:17px;
      max-width:560px;
    }

    .industry-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }

    .industry-points span{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:600;
      color:#fff;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(8px);
    }

    .news-shell{
      display:grid;
      gap:24px;
    }

    .news-tabs{
      display:flex;
      justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }

    .news-tab{
      min-height:48px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid rgba(29,79,174,.10);
      background:rgba(255,255,255,.84);
      color:#244064;
      font-weight:700;
      font-size:14px;
      transition:.25s ease;
      box-shadow:0 8px 20px rgba(24,55,110,.05);
    }

    .news-tab:hover{
      transform:translateY(-1px);
    }

    .news-tab.active{
      color:#fff;
      background:linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
      box-shadow:0 12px 24px rgba(45,108,223,.22);
      border-color:transparent;
    }

    .news-panel{display:none}
    .news-panel.active{display:block}

    .news-wrap{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:28px;
      align-items:stretch;
    }

    .news-list{
      display:grid;
      gap:18px;
    }

    .news-card{
      position:relative;
      overflow:hidden;
      padding:24px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,252,255,.88));
      border:1px solid rgba(23,64,124,.08);
      box-shadow:var(--shadow);
      transition:.28s ease;
    }

    .news-card:hover{
      transform:translateY(-4px);
      box-shadow:0 20px 50px rgba(24,55,110,.12);
    }

    .news-meta{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:12px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:var(--blue-deep);
      padding:8px 12px;
      border-radius:999px;
      background:rgba(45,108,223,.08);
    }

    .news-date{
      display:block;
      margin-top:14px;
      font-size:13px;
      color:#6c7f97;
      font-weight:600;
    }

    .news-card h3{
      margin-top:10px;
      font-size:24px;
      line-height:1.1;
      color:#18345f;
    }

    .news-card p{
      margin-top:12px;
      font-size:15px;
      color:var(--muted);
    }

    .news-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:16px;
      font-weight:600;
      color:var(--blue-deep);
    }

    .news-feature{
      position:relative;
      overflow:hidden;
      min-height:100%;
      border-radius:30px;
      display:flex;
      align-items:flex-end;
      border:1px solid rgba(23,64,124,.08);
      box-shadow:0 22px 56px rgba(24,55,110,.14);
      isolation:isolate;
    }

    .news-feature > img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:-1;
    }

    .news-feature::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(10,26,52,.72) 0%, rgba(23,64,124,.22) 48%, rgba(255,255,255,0) 100%);
      z-index:0;
    }

    .news-feature::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(9,24,48,.22) 100%);
      z-index:0;
    }

    .news-feature-content{
      position:relative;
      z-index:1;
      padding:36px;
      color:#fff;
      width:min(100%, 620px);
    }

    .news-feature-content .news-meta{
      color:#fff;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
    }

    .news-feature-content .news-date{
      color:rgba(255,255,255,.78);
    }

    .news-feature-content h3{
      margin-top:10px;
      font-size:40px;
      line-height:1.04;
    }

    .news-feature-content p{
      margin-top:14px;
      font-size:16px;
      color:rgba(255,255,255,.88);
    }

    .news-feature-content .news-link{
      color:#fff;
      margin-top:18px;
    }

    .why-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:22px;
    }

    .why-item{
      padding:28px 20px;
      text-align:center;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.38));
      border:1px solid rgba(23,64,124,.08);
      backdrop-filter:blur(8px);
    }

    .why-icon{
      width:72px;
      height:72px;
      margin:0 auto 18px;
      border-radius:22px;
      display:grid;
      place-items:center;
      background:linear-gradient(180deg,#f5f9ff,#eaf2ff);
      border:1px solid rgba(45,108,223,.10);
      color:var(--blue-deep);
    }

    .why-icon svg{width:34px;height:34px}

    .why-item h3{
      font-size:28px;
      color:#18345f;
    }

    .why-item p{
      color:var(--muted);
      margin-top:10px;
      font-size:15px;
      max-width:320px;
      margin-inline:auto;
    }

    @media (max-width: 1120px){
      .platform-grid{grid-template-columns:repeat(2, 1fr)}
      .solutions-wrap{grid-template-columns:1fr}
      .hero-inner{grid-template-columns:1fr}
      .hero{min-height:680px;background-position:center}
      .hero-copy{max-width:680px}
      .why-grid{grid-template-columns:1fr}
      .news-wrap{grid-template-columns:1fr}
    }

    @media (max-width: 900px){
      .solution-card.with-image{grid-template-columns:1fr}
      .solution-media-large{min-height:180px}
    }

    /* 底部悬浮导航 */
    .floating-nav {
      display: none;
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      flex-direction: row;
      gap: 16px;
      z-index: 999;
      padding: 12px 20px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 28px;
      box-shadow: 0 8px 32px rgba(24, 55, 110, 0.18);
      backdrop-filter: blur(12px);
    }

    .floating-nav a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      font-size: 22px;
      transition: all 0.25s ease;
      text-decoration: none;
    }

    .floating-nav .call-btn {
      background: linear-gradient(135deg, #2d6cdf, #194fae);
      color: #fff;
    }

    .floating-nav .message-btn {
      background: linear-gradient(135deg, #00c6fb, #005bea);
      color: #fff;
    }

    .floating-nav a:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(45, 108, 223, 0.35);
    }

    .floating-nav svg {
      width: 24px;
      height: 24px;
    }

    @media (max-width: 768px){
      .hero{display:none}
      .site-footer{display:none}
      .floating-nav{display:flex}
      .container{width:min(calc(100% - 28px), var(--max))}
      .hero{
        min-height:auto;
        background:
          linear-gradient(180deg, rgba(247,250,255,.94) 0%, rgba(247,250,255,.82) 48%, rgba(247,250,255,.24) 100%),
          url('{pboot:sitetplpath}/img/you.webp') center/cover no-repeat;
      }
      .section{padding:68px 0}
      .platform-grid{grid-template-columns:1fr}
      .stat-row{grid-template-columns:1fr}
      .industry-item{min-height:220px}
      .industry-content{padding:26px}
      .industry-content h3{font-size:30px}
      .news-feature-content{padding:26px}
      .news-feature-content h3{font-size:30px}
      .news-tabs{justify-content:flex-start}
    }

