:root {
      --blue:#42b0d5;
      --blue-dark:#0073ab;
      --navy:#001b2e;
      --text:#17212b;
      --muted:#5c6873;
      --soft:#f7f9fa;
      --line:#d8e0e5;
      --orange:#fe6627;
      --orange-dark:#d97706;
      --white:#ffffff;
    }

    * { box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      margin:0;
      font-family:"IBM Plex Sans", Arial, sans-serif;
      color:var(--text);
      background:#fff;
      line-height:1.5;
    }
    a { color:inherit; text-decoration:none; }
    .container { width:min(1180px, calc(100% - 48px)); margin:0 auto; }

    .nav {
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(255,255,255,.96);
      backdrop-filter:blur(12px);
      border-bottom:1px solid var(--line);
    }
    .nav-inner {
      height:82px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:32px;
    }
    .brand img {
      height:44px;
      width:auto;
      display:block;
    }
    .links {
      display:flex;
      gap:30px;
      align-items:center;
      font-size:15px;
      color:var(--text);
    }
    .links a {
      padding:30px 0;
      border-bottom:2px solid transparent;
    }
    .links a:hover {
      color:var(--blue-dark);
      border-bottom-color:var(--blue);
    }
    .btn {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:48px;
      padding:0 22px;
      border:1px solid var(--orange);
      background:var(--orange);
      color:#fff;
      font-weight:600;
      font-size:15px;
      cursor:pointer;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .btn:hover {
      transform:translateY(-2px);
      background:var(--orange-dark);
      box-shadow:0 14px 30px rgba(245,158,11,.22);
    }
    .btn.secondary {
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.55);
      color:#fff;
    }

    .hero {
      position:relative;
      overflow:hidden;
      min-height:690px;
      display:flex;
      align-items:center;
      background:
        linear-gradient(90deg, rgba(0,27,46,.90) 0%, rgba(0,27,46,.80) 38%, rgba(0,27,46,.30) 66%, rgba(0,27,46,.05) 100%),
        url('/assets/asset-3.png');
      background-size:cover;
      background-position:center;
      border-bottom:1px solid var(--line);
    }
    .hero-content {
      max-width:760px;
      padding:110px 0;
    }
    .eyebrow {
      color:var(--blue-dark);
      text-transform:uppercase;
      letter-spacing:.12em;
      font-size:13px;
      font-weight:600;
      margin-bottom:22px;
    }
    .hero .eyebrow { color:#d7f3ff; }
    h1 {
      margin:0;
      font-size:clamp(46px, 5.8vw, 76px);
      line-height:1.02;
      font-weight:300;
      letter-spacing:-.045em;
    }
    .hero h1 .orange { color:var(--orange); }
    .hero h1 .white { color:#fff; }
    .lead {
      margin:28px 0 0;
      max-width:720px;
      color:rgba(255,255,255,.88);
      font-size:20px;
      line-height:1.65;
    }
    .actions { margin-top:38px; display:flex; gap:14px; flex-wrap:wrap; }

    .trust {
      border-bottom:1px solid var(--line);
      background:#fff;
    }
    .trust-grid {
      display:grid;
      grid-template-columns:repeat(4,1fr);
    }
    .trust-item {
      padding:26px 24px;
      border-right:1px solid var(--line);
      color:var(--muted);
      font-size:15px;
    }
    .trust-item:last-child { border-right:0; }
    .trust-item strong {
      display:block;
      color:var(--text);
      font-weight:500;
      margin-bottom:4px;
    }

    section { padding:96px 0; }
    .section-light {
      background:var(--soft);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .section-head { max-width:820px; margin-bottom:54px; }
    .section-head.center { text-align:center; margin-left:auto; margin-right:auto; }
    h2 {
      margin:0;
      color:var(--text);
      font-size:clamp(34px, 4.2vw, 56px);
      line-height:1.08;
      font-weight:300;
      letter-spacing:-.035em;
    }
    .section-text {
      color:var(--muted);
      font-size:18px;
      line-height:1.7;
      margin-top:22px;
    }

    .platform-grid {
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:24px;
    }
    .card, .highlight-card, .network-node, .module-row {
      transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
    }
    .card:hover, .highlight-card:hover, .network-node:hover {
      transform:translateY(-8px);
      box-shadow:0 26px 60px rgba(0,36,61,.14);
      border-color:rgba(245,158,11,.45);
    }
    .card {
      background:#fff;
      border:1px solid var(--line);
      padding:34px;
      min-height:100%;
    }
    .card.blue {
      background:#eaf7fb;
      border-color:#c9eaf3;
    }
    .card h3 {
      margin:0;
      font-size:28px;
      line-height:1.18;
      font-weight:400;
      letter-spacing:-.02em;
    }
    .card p {
      color:var(--muted);
      margin:18px 0 0;
      line-height:1.75;
      font-size:16px;
    }
    .flow {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:30px;
    }
    .flow div {
      border-left:3px solid var(--orange);
      background:var(--soft);
      padding:18px;
      min-height:84px;
      display:flex;
      align-items:center;
      font-weight:500;
    }

    .operations-visual {
      padding:0;
      background:#fff;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .operations-grid {
      display:grid;
      grid-template-columns:1.05fr .95fr;
      min-height:560px;
    }
    .operations-image img {
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .operations-content {
      padding:72px;
      background:var(--soft);
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .operations-points {
      display:grid;
      gap:18px;
      margin-top:34px;
    }
    .operations-point {
      display:flex;
      gap:14px;
      color:var(--muted);
      line-height:1.6;
    }
    .operations-point:before {
      content:"•";
      color:var(--orange);
      font-size:28px;
      line-height:1;
      margin-top:-2px;
    }

    .network-section {
      background:#fff;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .network-wrap {
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:56px;
      align-items:center;
    }
    .network-map {
      position:relative;
      min-height:560px;
      background:linear-gradient(180deg,#fff 0%,#f7f9fa 100%);
      border:1px solid var(--line);
      overflow:hidden;
      padding:34px;
    }
    .network-map svg.lines {
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      pointer-events:none;
    }
    .network-node {
      position:absolute;
      width:150px;
      min-height:112px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 18px 45px rgba(0,36,61,.08);
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:10px;
    }
    .network-node.center {
      left:50%;
      top:50%;
      transform:translate(-50%,-50%);
      width:190px;
      min-height:138px;
      background:var(--navy);
      color:#fff;
      border-color:var(--navy);
      z-index:3;
    }
    .node-icon, .icon {
      width:64px;
      height:64px;
      background:#eef7fb;
      border:1px solid #cfe7ef;
      color:var(--blue-dark);
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:28px;
      transition:transform .28s ease, background .28s ease, color .28s ease;
    }
    .card:hover .icon, .network-node:hover .node-icon {
      transform:scale(1.08);
      background:var(--orange);
      color:#fff;
    }
    .node-icon {
      width:38px;
      height:38px;
      margin-bottom:0;
    }
    .network-node.center .node-icon {
      background:var(--orange);
      border-color:var(--orange);
      color:#fff;
    }
    .network-node strong { font-size:15px; line-height:1.2; font-weight:600; }
    .network-node span { font-size:12px; line-height:1.35; color:var(--muted); }
    .network-node.center span { color:rgba(255,255,255,.76); }
    .node-container { left:6%; top:14%; }
    .node-terminal { right:6%; top:14%; }
    .node-truck { right:6%; bottom:16%; }
    .node-client { left:6%; bottom:16%; }
    .node-staff { left:38%; top:2%;}
    .node-warehouse { left:38%; bottom:2%; }

    .cards3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
    .cards2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
    .icon svg { width:32px; height:32px; stroke-width:1.8; }
    .check {
      display:flex;
      gap:11px;
      align-items:center;
      margin-top:14px;
      color:var(--muted);
      font-size:15px;
    }
    .check:before { content:"✓"; color:var(--blue-dark); font-weight:700; }

    .target-grid {
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:70px;
      align-items:center;
    }
    .list { display:grid; gap:14px; }
    .list-item {
      background:#fff;
      border:1px solid var(--line);
      padding:22px 24px;
      display:flex;
      gap:14px;
      color:var(--muted);
      line-height:1.6;
    }
    .list-item:before { content:"✓"; color:var(--blue-dark); font-weight:700; }

    .split { display:grid; grid-template-columns:1fr .75fr; gap:34px; align-items:stretch; }

    .highlights-section {
      background:#fff;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .highlights-grid {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .highlight-card {
      background:var(--soft);
      border:1px solid var(--line);
      padding:28px;
      min-height:180px;
    }
    .highlight-card strong {
      display:block;
      font-size:38px;
      line-height:1;
      color:var(--orange);
      font-weight:300;
      margin-bottom:16px;
    }
    .highlight-card h4 { margin:0 0 12px; font-size:18px; font-weight:500; }
    .highlight-card p { margin:0; color:var(--muted); line-height:1.7; font-size:15px; }

    .faq { max-width:860px; margin:0 auto; }
    details {
      background:#fff;
      border:1px solid var(--line);
      margin-bottom:12px;
    }
    summary {
      padding:24px 26px;
      cursor:pointer;
      font-weight:500;
      font-size:18px;
    }
    details p { margin:0; padding:0 26px 24px; color:var(--muted); line-height:1.7; }

    .contact {
      background:var(--navy);
      color:#fff;
    }
    .contact h2, .contact .eyebrow { color:#fff; }
    .contact .section-text { color:rgba(255,255,255,.75); }
    .contact-grid {
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:50px;
      align-items:start;
    }
    .contact-card {
      background:#fff;
      color:var(--text);
      padding:34px;
      border:1px solid rgba(255,255,255,.22);
    }
    input, textarea {
      width:100%;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
      padding:15px 16px;
      margin-bottom:14px;
      font:inherit;
      outline:none;
    }
    input:focus, textarea:focus { border-color:var(--blue-dark); }
    textarea { min-height:132px; resize:vertical; }

    .cta {
      background:var(--soft);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .cta-box {
      display:grid;
      grid-template-columns:1fr auto;
      gap:30px;
      align-items:center;
      background:#fff;
      border:1px solid var(--line);
      padding:42px;
    }

    .footer-enterprise {
      background:#001b2e;
      color:rgba(255,255,255,.72);
      padding:72px 0 34px;
    }
    .footer-grid {
      display:grid;
      grid-template-columns:1.3fr 1fr 1fr 1fr;
      gap:42px;
      margin-bottom:44px;
    }
    .footer-brand img {
      height:46px;
      width:auto;
      margin-bottom:18px;
      display:block;
      filter:brightness(0) invert(1);
    }
    .footer-column h4 {
      color:#fff;
      margin:0 0 18px;
      font-size:16px;
      font-weight:500;
    }
    .footer-column a {
      display:block;
      margin-bottom:12px;
      color:rgba(255,255,255,.72);
      font-size:14px;
    }
    .footer-column a:hover { color:#fff; }
    .footer-bottom {
      border-top:1px solid rgba(255,255,255,.12);
      padding-top:24px;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }

    .legal-modal {
      display:none;
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.62);
      z-index:9999;
      align-items:center;
      justify-content:center;
      padding:24px;
    }
    .legal-modal.active { display:flex; }
    .legal-box {
      width:min(920px,100%);
      max-height:86vh;
      overflow-y:auto;
      background:#fff;
      color:var(--text);
      padding:42px;
      border:1px solid var(--line);
      box-shadow:0 30px 80px rgba(0,0,0,.25);
      position:relative;
    }
    .legal-box h2 { font-size:40px; margin-bottom:18px; }
    .legal-box h3 { margin-top:34px; margin-bottom:10px; font-size:22px; font-weight:500; }
    .legal-box p { color:var(--muted); line-height:1.8; font-size:15px; }
    .legal-close {
      position:absolute;
      top:18px;
      right:18px;
      width:42px;
      height:42px;
      border:1px solid var(--line);
      background:#fff;
      cursor:pointer;
      font-size:20px;
    }

    .cookie-banner {
      position:fixed;
      left:24px;
      right:24px;
      bottom:24px;
      background:rgba(255,255,255,.98);
      border:1px solid var(--line);
      box-shadow:0 24px 60px rgba(0,36,61,.16);
      padding:22px 24px;
      z-index:10000;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      backdrop-filter:blur(10px);
    }
    .cookie-banner.hidden { display:none; }
    .cookie-text { max-width:760px; }
    .cookie-text strong { display:block; margin-bottom:8px; color:var(--text); font-size:16px; font-weight:600; }
    .cookie-text p { margin:0; color:var(--muted); line-height:1.6; font-size:14px; }
    .cookie-actions { display:flex; gap:12px; flex-wrap:wrap; }
    .cookie-btn {
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
      padding:12px 18px;
      font-size:14px;
      cursor:pointer;
    }
    .cookie-btn.primary { background:var(--orange); border-color:var(--orange); color:#fff; }

    @media (max-width:940px) {
      .links { display:none; }
      .nav-inner { height:76px; }
      .brand img { height:38px; }
      .hero { min-height:auto; }
      .trust-grid, .cards3, .cards2, .highlights-grid, .footer-grid {
        grid-template-columns:1fr;
      }
      .platform-grid, .operations-grid, .network-wrap, .target-grid, .split, .contact-grid, .cta-box {
        grid-template-columns:1fr;
      }
      .trust-item { border-right:0; border-bottom:1px solid var(--line); }
      .flow { grid-template-columns:1fr; }
      .operations-content { padding:42px 28px; }
      .network-map { min-height:auto; }
      .network-map svg.lines { display:none; }
      .network-node, .network-node.center {
        position:relative;
        left:auto!important;
        right:auto!important;
        top:auto!important;
        bottom:auto!important;
        transform:none!important;
        width:100%;
        margin-bottom:14px;
      }
      .cookie-banner {
        flex-direction:column;
        align-items:flex-start;
      }
      section { padding:72px 0; }
      .container { width:min(100% - 32px,1180px); }
    }
  
    .updates-section {
      background: #f7f9fa;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .deployment-card {
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 26px 70px rgba(0,36,61,.10);
      overflow: hidden;
      margin-bottom: 28px;
    }

    .deployment-card img {
      width: 100%;
      display: block;
      height: auto;
    }

    .deployment-body {
      padding: 34px;
    }

    .update-badge {
      display: inline-flex;
      background: #eef7fb;
      color: var(--blue-dark);
      border: 1px solid #cfe7ef;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 22px;
    }

    .deployment-body h3 {
      margin: 0 0 18px;
      font-size: 36px;
      line-height: 1.15;
      font-weight: 400;
      letter-spacing: -.03em;
      color: var(--text);
    }

    .deployment-body p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
      margin: 0 0 16px;
    }

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

    .update-card {
      background: #fff;
      border: 1px solid var(--line);
      padding: 28px;
      min-height: 270px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .update-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 60px rgba(0,36,61,.14);
      border-color: rgba(245,158,11,.45);
    }

    .update-card h3 {
      margin: 0 0 14px;
      font-size: 24px;
      line-height: 1.25;
      font-weight: 500;
      color: var(--text);
    }

    .update-card p {
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    .read-btn {
      margin-top: 24px;
      display: inline-flex;
      align-items: center;
      color: var(--blue-dark);
      font-weight: 600;
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
      font: inherit;
    }

    .read-btn:hover {
      color: var(--orange-dark);
    }

    .simple-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 20000;
      background: rgba(0,0,0,.62);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .simple-modal.open {
      display: flex;
    }

    .simple-modal-box {
      background: #fff;
      color: var(--text);
      width: min(860px,100%);
      max-height: 86vh;
      overflow-y: auto;
      padding: 42px;
      border: 1px solid var(--line);
      box-shadow: 0 30px 80px rgba(0,0,0,.25);
      position: relative;
    }

    .simple-modal-box h2 {
      margin: 0 0 20px;
      font-size: 36px;
      line-height: 1.15;
      font-weight: 400;
    }

    .simple-modal-box p,
    .simple-modal-box li {
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
    }

    .simple-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      background: #fff;
      cursor: pointer;
      font-size: 22px;
    }

    @media (max-width: 940px) {
      .update-grid {
        grid-template-columns: 1fr;
      }
      .deployment-body h3 {
        font-size: 30px;
      }
    }


    .module-emoji {
      font-size: 34px;
      line-height: 1;
    }