/* ══ ABOUT PAGE — SEAT TOOLTIP STYLE (inside HTML) ══ */
          /* ── About Page TUG animated logo ── */
          .about-tug-wrap {
            display:flex;
            align-items:stretch;
            height: 52px;
            width: 110px;
            filter: drop-shadow(0 1px 8px rgba(91,63,160,0.3));
            animation: aboutTugOpen 2.8s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
          }
          @keyframes aboutTugOpen {
            from { width: 110px; }
            to   { width: 178px; }
          }
          .about-tug-t {
            flex-shrink:0; height:100%;
            aspect-ratio: 176.22 / 100;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 176.22 100'%3E%3Cpolygon fill='%235b3fa0' points='31.14 0 0 0 0 21.91 31.14 21.91 31.14 100 53.05 100 53.05 21.91 84.19 21.91 84.19 0 53.05 0'/%3E%3Cpath fill='%235b3fa0' d='M176.22,21.91V0h-40.66V38.38h-14.93V0h-21.91V100h21.91V60.29h14.93v39.71h40.66v-21.91h-18.75V21.91h18.75Z'/%3E%3C/svg%3E");
            background-repeat:no-repeat; background-size:contain;
          }
          .about-tug-u {
            flex:1 1 0; min-width:0; height:100%;
            background: linear-gradient(to bottom,#5b3fa0 0%,#5b3fa0 21.91%,transparent 21.91%,transparent 78.09%,#5b3fa0 78.09%,#5b3fa0 100%);
          }
          .about-tug-g {
            flex-shrink:0; height:100%;
            aspect-ratio: 129.81 / 100;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 129.81 100'%3E%3Cpolygon fill='%235b3fa0' points='129.81 0 129.81 21.91 87.72 21.91 87.72 100 65.8 100 65.8 0 129.81 0'/%3E%3Cpolygon fill='%235b3fa0' points='51.62 0 51.62 100 0 100 0 78.09 29.71 78.09 29.71 21.91 0 21.91 0 0 51.62 0'/%3E%3C/svg%3E");
            background-repeat:no-repeat; background-size:contain;
          }
          @media (max-width: 767px) {
            .about-tug-wrap { height: 40px; }
            @keyframes aboutTugOpen { from{width:84px} to{width:130px} }
          }
          @media (max-width: 480px) {
            .about-tug-wrap { height: 34px; }
            @keyframes aboutTugOpen { from{width:70px} to{width:108px} }
          }